Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 612 Bytes

File metadata and controls

36 lines (26 loc) · 612 Bytes

Dev Connector

It is a small social network app that includes authentication, profiles and forum posts.

Application

Installation

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

npm install

Install client dependencies

cd client
npm install

Run both Express and React from root

npm run dev