This project is a part of the roadmap.sh project.
This is a Todo List API built with Django and Django REST Framework. It provides endpoints to manage todo items.
-
Clone the repository:
git clone https://github.com/your-username/todoListAPI.git cd todoListAPI
-
Install dependencies using Poetry:
pip install poetry poetry install
-
Run migrations:
poetry run python manage.py migrate
-
Start the development server:
poetry run python manage.py runserver
You can access the API at http://127.0.0.1:8000/. The available endpoints are:
GET /todos/
- List all todo itemsPOST /todos/
- Create a new todo itemGET /todos/{id}/
- Retrieve a specific todo itemPUT /todos/{id}/
- Update a specific todo itemDELETE /todos/{id}/
- Delete a specific todo item
- User registration to create a new user
- Login endpoint to authenticate the user and generate a token
- CRUD operations for managing the to-do list
- Implement user authentication to allow only authorized users to access the to-do list
- Implement error handling and security measures
- Use a database to store the user and to-do list data (you can use any database of your choice)
- Implement proper data validation
- Implement pagination and filtering for the to-do list
This project uses pre-commit hooks to ensure code quality. The hooks are configured in the .pre-commit-config.yaml file. To install the hooks, run:
pre-commit install
To run the hooks manually, use:
pre-commit run --all-files