Quick command for python-django
How to create New project :
- Install django
- django-admin.py startproject
How to create new App : python manage.py startapp
How to run server : ./manage.py runserver
How to syncdb/ create db :
./manage.py syncdb
How to activate admin : To do this, open the polls/admin.py file, and edit it to look like this: admin.site.register()