Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 818 Bytes

README.md

File metadata and controls

45 lines (31 loc) · 818 Bytes

DevConnector

Click here for live demo

Social network for developers

This is a MERN stack application from the "MERN Stack Front To Back" course on Udemy. It is a small social network app that includes authentication, profiles and forum posts.

Quick Start 🚀

Add a default.json file in config folder with the following

{
  "mongoURI": "<your_mongoDB_Atlas_uri_with_credentials>",
  "jwtSecret": "secret",
  "githubToken": "<yoursecrectaccesstoken>"
}

Install server dependencies

yarn install

Install client dependencies

cd client
yarn install

Run both Express & React from root

yarn dev

Build for production

cd client
yarn build