Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 974 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 974 Bytes

Task-Management

Simple Task Management website for tracking your daily tasks or to manage your tasks in projects.

Technologies

ReactJS, ExpressJS, MongoDB

Website

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

Usage in local

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!