- Create virtualenv
virtualevn -p python3 env
- Activate virtualenv
source env/bin/activate
- Install dependencies
pip install -r requirements.txt
- Makemigrations
python manage.py makemigrations
- Migrate
python manage.py migrate
- Load mock data
python manage.py load_db
api/v1/tasks
List all the tasksapi/v1/categories
List all the categoriesapi/v1/tags
List all the tagsapi/v1/task/<task_id>
CRUD operation on specific task