Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 263 Bytes

tutorial.md

File metadata and controls

16 lines (11 loc) · 263 Bytes

create a virtual environment

we do this all the time with django.

pipenv shell pip show Django git init git add . git commit -m "..." exit

django-admin startproject mysite .

python manage.py runserver 0.0.0.0:8000

python manage.py migrate