The Movie Search App is a user-friendly platform built with React. It integrates with the TMDB API to provide real-time movie data, offering a seamless experience for movie enthusiasts to explore their favorite films.
Before you begin, ensure you have met the following requirements:
- You have installed the latest version of
node
andnpm
. - You have a TMDB API key. If you don't have one, you can create it from the TMDB API documentation.
- Docs Link : https://developer.themoviedb.org/docs
- API Key Creation Link: https://www.themoviedb.org/settings/api
To run this app, follow these steps:
-
Clone this repository.
-
Navigate to the project directory.
-
Create a
.env
file in the root of your project. -
Add the following line to your
.env
file:VITE_API_KEY=Your_TMDB_API_Key
Replace
Your_TMDB_API_Key
with your actual TMDB API key. -
Install the project dependencies by running:
npm install
-
Start the development server by running:
npm run dev
The application should now be running locally.