An in memory (NO DATABASE) web application CRUD based RESTful backend for managing personal tasks and notes within a given task.
- Git
- Python3
HTTPS
git clone https://github.com/Ak-Shaw/task-manager-djangorest.git
SSH
git clone git@github.com:Ak-Shaw/task-manager-djangorest.git
dependencies
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
python3 manage.py migrate --run-syncdb
run server
source env/bin/activate
python3 manage.py runserver
testing
python3 manage.py test
Refer API Usage here.