Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 632 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 632 Bytes

todo-list

This web app & rest api can be used to keep track of your to do list (made by django)

Api Documentation is on website and viewable upon login

STEPS

git clone https://github.com/Kingsolomon445/todo-list

From the project root directory

start a virtual environment and activate it

python -m virtualenv venv
source venv/bin/activate

Install the required dependencies

pip install -r requirements.txt

Create database tables

python3 manage.py makemigrations
python3 manage.py migrate

Run the Server

python3 manage.py runserver

Go to localhost:8000