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.txtpython manage.py makemigrationspython manage.py migratepython manage.py createsuperuserpython 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.