Table of Contents
This is a Full Stack Chatting App. Uses Socket.io for real time communication and stores user details in encrypted format in Mongo DB Database.
- Node ^10.0.0
- npm
$ cd frontend // go to client folder
$ npm i // npm install packages
$ npm start // run it locally
// deployment for client app
$ npm run build
You need to add Port number for backend, MongoDB atlas URI and create a JWT secret
PORT = 5000
MONGO_URI = <your mongoDB atlas URI>
JWT_SECRET = <your secret key>
$ npm i // npm install packages
$ cd backend // go to backend folder
$ npm start // run it locally