Training application with inspiration of JustWatch. Application is developed with Next.Js and React.
Application is using TMDB API. You will need to create account and login to get access to credentials.
Provide following variables in .env
API_TOKEN="xxx"
API_KEY="xxx"
API_BASE_URL="https://api.themoviedb.org/3/"
Run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
First step is to install Docker on your pc. Follow official documentation for your OS.
After successful installation you will need to run Docker on your pc.
# production build
docker compose build frontend
# after successful build, run local production build
docker compose up frontend
Open http://localhost:3000 with browser.