Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/navaneeth-21/tasks-tracker-api
A Task/Exercise Tracker which is used to track the users tasks which include fields like : description , duration , date. It also includes filtering the data based on the dates given in queries
https://github.com/navaneeth-21/tasks-tracker-api
expressjs freecodecamp-backend freecodecamp-challenge microservices microservices-application mongodb-database mongoose-schema nodejs task-tracker taskscheduling
Last synced: 3 months ago
JSON representation
A Task/Exercise Tracker which is used to track the users tasks which include fields like : description , duration , date. It also includes filtering the data based on the dates given in queries
- Host: GitHub
- URL: https://github.com/navaneeth-21/tasks-tracker-api
- Owner: Navaneeth-21
- Created: 2024-08-14T07:46:06.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-23T16:41:06.000Z (4 months ago)
- Last Synced: 2024-10-10T05:40:27.901Z (3 months ago)
- Topics: expressjs, freecodecamp-backend, freecodecamp-challenge, microservices, microservices-application, mongodb-database, mongoose-schema, nodejs, task-tracker, taskscheduling
- Language: JavaScript
- Homepage: https://3000-freecodecam-boilerplate-99jzwn50emw.ws-us115.gitpod.io/
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exercise Tracker
A Microservice Application which is used to track the users tasks/exercises.
- It Consists of Several api endpoints which is used to make the following requests:
- POST REQUEST - /api/users - creating the new user
- GET REQUEST - /api/users - to get all the users
- POST REQUEST - /api/users/:_id/exercises - to create the users exercises
- GET REQUEST - /api/users/:_id/logs - all the exercises that belong to a specifc user
- You'll get the responses in the json format.
- There will be two models : exercises schema(which consists of information about exercises) and user schema(users info)## Getting Started
1. Tools and Technologies :
- NodeJS
- ExpresJS
- MongoDB
2. Clone the repository
3. Install the dependencies
```sh
npm install
4. Replace the MONGOURI with your mongodb connection string in .env file
5. Start the server```sh
npm run start
```