This application displays movie data from omdbapi.com. The movies are sortable by year, and can be clicked upon to get a detailed synopsis.
Once forked and cloned from Github, please follow the below steps
- Open a terminal and navigate to the folder
movie-wizard
. - Once inside, run
npm i
. This will install all the dependencies. - In order to run in local, an API key is required. Please acquire one from OMDb API.
- Once you have the key, create a file in the root of
movie-wizard
and name the file.env
. - Inside the
.env
file, paste the following:
REACT_APP_API_KEY=YOUR_API_KEY
- Now, you can start the application by executing
npm start
in the terminal.