This project uses Django Rest Framework to create a Rest api with all the CRUD operations of a todo list.
** You can use a virtual environment to keep the dependencies locally
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
- Login: http://localhost:8080/admin use the same user and password used on step 4
- Access on browser: http://localhost:8080/todos/api to create and get the list of Todos
- Access on browser: http://localhost:8080/todos/api/:id (with some integer id) to Update, delete and get detail of a specific todo record.