Deployed at https://task-app4.herokuapp.com/
A simle task app where users can login and add tasks.
- Node.js
- Express.js
- ReactJS
- Redux
- MongoDB
This application is deployed on Heroku. Please check it out 😄 here.
- Clone the repo
git clone https://github.com/sagrawal9689/Tasks-App.git
- Install NPM packages in the root folder
cd Tasks-App npm install
- Install NPM packages in frontend folder
cd frontend npm install
Create a config.env file in the root and add the following
NODE_ENV = development
PORT = 5000
MONGO_URI = your mongodb uri
JWT_SECRET = 'abc123'
JWT_EXPIRES_IN= 1d
# Run backend (:5000)
npm start
cd frontend
# Run frontend (:3000)
npm start