This is a simple Front-End CRUD application built using Angular.
- If you wish to see the Front-end and animations alone , visit TaskTracker.
- If you wish to see the Front-end communicating with a test API follow the bellow steps.
- Install json-server
- Save the db.json file locally
- Run the server locally on port 5000 using the following command.
json-server --watch db.json --port 5000
- Now visit TaskTracker.
- Built a JAX-RS Rest Api which responds to the Angular Application the same way json-server does .
- Java Backend Api repository: task-tracker-api.