/simple-mern-auth

MERN stack (+redux) simple app with authentication using jwt and passport

Primary LanguageJavaScript

SIMPLE APP AUTHENTICATION WITH JWT & PASSPORT

Final App Minimal full-stack MERN app (+ redux)with authentication using passport and JWTs.

This project uses the following technologies:

Configuration

Make sure to add your own MONGOURI from your MongoDB Atlas database in config/keys.js.

module.exports = {
  mongoURI: "YOUR_MONGO_URI_HERE",
  secretOrKey: "secret"
};

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:6000 and client on http://localhost:3000

Register

Login

Dashboard

For deploying to Heroku, please refer to this helpful video by TraversyMedia.