A MERN stack app that allows users to search the OMDb database for movies and shows. A successful search query will display up to 10 results in each category, with each result containing a modal to open for additional IMDb information. Users also have the option to create an account so they can add and remove items from their favorites list and view this list whenever they're logged in.
Ensure you have node
and npm
installed on your system.
$ node -v
$ npm -v
Clone the repository to your current working directory, and cd movie-tv-app
$ git clone https://github.com/laurensingbush/react-omdb-app.git
$ cd client // go to client folder
$ npm install // install packages
$ npm start // start dev server
Create an .env file in root and add your own REACT_APP_OMDB_API_KEY, DATABASE, and JWT_SECRET environment variables.
$ cd ../ // if in client folder, go to root
$ npm install // install packages
$ npm start // start dev server
$ npm run dev // start both client and server