I keep forgetting all of the different django commands so I am creating this cheat sheet for myself.
# start a new project
>>> django-admin.py startproject siteName
# start dev server
>>> python manage.py runserver
# sync the database with recent model changes.
>>> python manage.py syncdb
Home | Tags | Categories |