It is a small social network app that includes authentication, profiles and forum posts.
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 installInstall client dependencies
cd client
npm installRun both Express and React from root
npm run dev