This website is built using Next.js 13 and use TMDB API to fetch movie and TV serial data.
On this website, users can search for and explore movies and TV serials, as well as bookmark their favorites for easy access later. This website is also fully responsive, so it can be easily accessed and used on any device, including desktop computers, laptops, tablets, and smartphones.
To get started, you will need to obtain an API key from TMDB by creating an account on their website (https://www.themoviedb.org/). Once you have your API key, you can set it as an environment variable.
To run the website locally, clone the repository and run the following commands:
- Clone repository using git clone
git clone https://github.com/Talibb1/Next-JS-Movie-Project.git
- Navigate to the project directory
cd Next-JS-Movie-Project
- Install dependencies
npm install
- Get your TMDB API key from here and set it as an environment variable in
.env
fileTMDB_API_KEY=<your_api_key_here>
- Run the development server
npm run dev
This will start the development server and the website will be available at http://localhost:3000.