Skip to content
This repository was archived by the owner on Oct 5, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (15 loc) · 467 Bytes

File metadata and controls

29 lines (15 loc) · 467 Bytes

Clone repo or download files

Open directory in VSCode as root

If pipenv not installed: pip install pipenv

Create a virtual environment pipenv shell

Change python interpreter at bottom of VSCode page OR Ctrl + Shift + P : type Python: Intrepreter and change

Install requirements pipenv sync

Run django server py manage.py runserver

IF ANY CAHNGES MADE TO THE DATABASE

Make migrations
py manage.py makemigrations
py manage.py migrate