Django commands

python manage.py runserver 80
runserver so when you type in 127.0.0.1 you'll come up with the django site

python -c "import django; print(django.get_version())"
enter this to figure out which version of django you have

use this tutorial on the site for making projects: https://docs.djangoproject.com/en/1.7/intro/tutorial01/

python manage.py syncdb
to populate the table necessary for the default installed apps, do this in the project folder

python manage.py startapp appname
make an app with models and views

python manage.py shell
this will open a python instance which can interact with your django app