/mern-movie

A movie review application

Primary LanguageJavaScript

mern-movie

Minimal full-stack Movie Review Application

Preview available on Heroku

Configuration

Make sure to add your own MONGOURI from your mLab database in config/default.json.

module.exports = {
  mongoURI: "YOUR_MONGO_URI_HERE",
  "jwtSecret": "sl_myJwtSecret"
};

Quick Start

// Install dependencies for server & client
npm install && npm run client-install

// Run client & server with concurrently
npm run dev

// Server runs on http://localhost:5000 and client on http://localhost:3000

Test

For running tests.

npm test