Made using TMDB API
- Add a category selector in the carousel
- Maybe migrate the project to Next.js and TypeScript who knows 🙃
To run this application in your machine, you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/Edlavio/Himovie
You will need a account in TMDB to get your own API key and after that you'll create a .env file and add this to your .env:
VITE_API_KEY=api_key= //here you will put your api key after =
VITE_MOVIE=https://api.themoviedb.org/3/movie/
VITE_SEARCH=https://api.themoviedb.org/3/search/movie
VITE_IMG=https://image.tmdb.org/t/p/
And after you will run:
# Install dependencies
$ npm install
# Run the app
$ npm start