https://personal-tasktracker.netlify.app
This app is a personal task tracker developed using react.js and material-ui.
User tasks stored in the local storage, so that previously entered tasks are displayed when the page loads again.
This website consumes the api https://task-priorities.herokuapp.com/ whose code is here
- Run the following command to install dependencies
npm install- Run the following command to run the project
npm startThen the react app will run on http://localhost:3000 address.
This website consumes the api https://task-priorities.herokuapp.com/ whose code is here
This app may run a local json-server to serve job priorities on http://localhost:5000/priorities address.
For this run the following command:
npm run serverAlter the line in the AppContext.js,
from this:
const url = 'https://task-priorities.herokuapp.com';to this:
const url = 'http://localhost:5000/priorities';and edit the file data/db.json