This is a web application, using which you can
- create tasks
- view tasks
- edit tasks
- delete tasks
- Node js runtime
- MongoDB database server
Clone this repository using Git by running the following line in cmd / terminal
git clone https://github.com/gourab-stu/task-creator-app.git
Create a file named production.env and fill in the following variables
PORT=""
MONGODB_URI=""
MONGODB_DBNAME=""
Open the cloned folder in cmd / terminal and install all dependencies by running the following command
npm install
Ensure the MongoDB database server is running and create a Collection named tasks
Open the cloned folder in cmd / terminal and run the following command to start the application server
npm run start