Create a movie discovery web application that allows users to search for movies, view details about them, and save their favorite movies. You’ll be consuming data from the TMDB API.
- Node.js: Make sure you have Node.js installed on your local machine. You can download it from nodejs.org.
Follow these steps to get the project up and running on your local machine.
- Clone the repository:
$ git clone https://github.com/Nathan-Somto/hng-task-two.git
- Navigate to the project directory:
$ cd your-project
- Install dependencies:
$ npm i
- create a .env file and add your API_KEY
$ touch .env && echo "API_KEY=your_api_key_please" >> .env
- start the server
$ npm run dev