Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 955 Bytes

README.md

File metadata and controls

58 lines (39 loc) · 955 Bytes

django-rest-logo

Task Manager

Description

An in memory (NO DATABASE) web application CRUD based RESTful backend for managing personal tasks and notes within a given task.

sample-run-gif

Pre-setup dependencies

  • Git
  • Python3

Setup

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

Usage

run server

source env/bin/activate
python3 manage.py runserver

testing

python3 manage.py test

Refer API Usage here.