- Download the project directory
- Open the directory in a terminal
- Run the server
python manage.py runserver
- Check the API using Postman
- User Registration (POST)
localhost:8000/register - User Login (POST) - Obtain Access Token
localhost:8000/login - Create a To-Do (POST) - Requires Authorization
- Delete a To-Do (DELETE) - Replace
idwith the actual To-Do IDlocalhost:8000/todos/{id}/
Make sure to include the access token in the request headers when creating or deleting a To-Do item.