Changes between Version 2 and Version 3 of Programming/Django
- Timestamp:
- 07/22/12 10:26:54 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Programming/Django
v2 v3 6 6 {{{ 7 7 django-admin.py startproject mysite 8 }}} 9 Edit the settings.py file with correct DB settings 8 10 9 }}}10 11 Start test server: 11 12 … … 13 14 python manage.py runserver 0.0.0.0:8000 14 15 }}} 16 Create an app: 17 18 {{{ 19 python manage.py startapp polls 20 }}} 21 Activate the app by editing the settings.py file again, and change the INSTALLED_APPS to include the project