- Framework: React
- Deployment: Vercel
- Styling: Tailwind CSS
- Animation: Motion
- API TMDB
- You need to create a TMDB (The Movie Database) account and create an API key
- A Supabase account
- The latest version of node.js
$ git clone https://github.com/aaimeraud/moviematcherdotcom
$ cd moviematcherdotcomThen create a .env file at the root of the folder and add your TMDB API Read Access Token and Supabase keys
VITE_TMDB_API_KEY="Paste your API Read Access Token here"
VITE_SUPABASE_URL=<SUBSTITUTE_SUPABASE_URL>
VITE_SUPABASE_PUBLISHABLE_KEY=<SUBSTITUTE_SUPABASE_PUBLISHABLE_KEY>And then install the dependencies and start the server
$ npm install # Installs the necessary dependencies mentionned in the package.json
$ npm run dev # Starts the server at localhost:5173