What do I watch tonight ?! Good question, right ?! Here's the API of Scenario, my website based on TMDB API to help you find something to watch for tonight.
Fork the project.
Use the package manager npm to install every dependencies.
npm install
Complete .env file with your own environment variables. For your database, you need to use Postgres.
Then use the following command to build Prisma's schema.
npm run build
Followed by :
npm run migrate
Once the migration is successfully done, you'll be able to run the server.
Launch the server locally with :
npm run dev
Now you can login with the default user :
#Email
email.toto@gmail.com
#Password
bladerunner
Or create you're own.
Visit the client repository for instruction on how to run the client side locally.