Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 414 Bytes

READEME.md

File metadata and controls

18 lines (13 loc) · 414 Bytes

Setup project and run with following steps

Install virtual environment

sudo apt install python-virtualenv

Setup virtual environment with python 3.6+

virtualenv venv -p python3

Install python dependencies

pip install -r requirements.txt

Migrate database

python manage.py migrate

Run server

python manage.py runserver 8000

Test on browser

http://localhost:8000