Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 744 Bytes

README.md

File metadata and controls

45 lines (30 loc) · 744 Bytes

MERN - IMDB MOVIE SEARCH AND FAVORITE

Note:

IMDB site returns only one movie at a time for any search term.

Env Variables

Create a .env file in then root and add the following

NODE_ENV = development
PORT = 5000
MONGO_URI = mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.8.0

Install Dependencies (frontend & backend)

npm install
cd frontend
npm install

Run

# Run frontend (:3000) & backend (:5000)
npm run dev

# Run backend only
npm run server

Build & Deploy

# Create frontend prod build
cd frontend
npm run build

There is a Heroku postbuild script, so if you push to Heroku, no need to build manually for deployment to Heroku