Simple Task Management website for tracking your daily tasks or to manage your tasks in projects.
ReactJS, ExpressJS, MongoDB
https://task-manager-lambda.vercel.app/
You can use this account to test things out without having to create an account.
username: zeynal
password: zeynal123
You need to install and set up MongoDB Compass.
In MongoDB Compass run on local mongodb://127.0.0.1:27017
.
In the server
folder create .env
file and set up these values:
DATABASE_URL=mongodb://127.0.0.1:8000:27017
ACCESS_TOKEN_SECRET=<random-64-character-string>
Use npm i
in both client
and server
to download neccessery npm packages.
Run npm run dev
in client
to run FrontEnd.
Run npm run devStart
in server
to run BackEnd.
That's it! You are up to go!