A YouTube clone project.
DkTube is a project that aims to recreate the functionality and interface of YouTube.
You need to have a main dependency installed:
Do you use nvm? Then you can run nvm install in the project folder to install and use the most appropriate version of Node.js.
git clone https://github.com/ncontiero/dk-tube.gitSo after getting the repository, don't forget to install the project's local dependencies:
pnpm installCreate a .env file similar to .env.example.
Change Clerk and GCP variables according to your project.
# ...
# Google Cloud
GC_API_KEY="YOUR_GC_API_KEY"
# Clerk Keys
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="YOUR_CLERK_PUBLISHABLE_KEY"
CLERK_SECRET_KEY="YOUR_CLERK_SECRET_KEY"
# Only PROD
CLERK_WEBHOOK_SIGNING_SECRET="YOUR_CLERK_WEBHOOK_SIGNING_SECRET"
# Clerk Routes
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/sign-up"
# ...To run the project locally, just run the command below:
pnpm devThis project is licensed under the MIT License - see the LICENSE file for details