DontTellme is a chatapp designed using reactJs in frontend and powered by nodeJs and Express in the backend.
- Delete your private messages after you logout ❌
- Search users through their username 🤷
- Your realname is never displayed 🔍
DontTellMe Node.js to run.
Clone the repositiory in your local environment
git clone https://github.com/knightryder098/DontTellMe.git
Install the dependencies and devDependencies and start the server.
cd frontend
npm i
cd backend
npm i
Create a .env
file and put the following variables
> In frontend Folder
REACT_APP_BACKEND_URL_PROD=' your Backend url '
> In Backend Folder
PORT='any number (1000-9999)'
DB_PWD=" Your MongoDb Atlas user Password"
DB_USER = ' Your MongoDB Atlas username'
DB_NAME = ' DataBase Name (Anything) '
FRONTEND_URL = 'Your frontend url '
In frontend Folder Start the frontend service
cd frontend
npm start
In Backend Folder start the backend
cd backend
npm run dev
Want to contribute? Great! Your are always welcome.
Verify the deployment by navigating to your server address in your preferred browser.
http://localhost:${PORT}