Changes between Version 2 and Version 3 of Programming/Django


Ignore:
Timestamp:
07/22/12 10:26:54 (12 years ago)
Author:
jorrit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Programming/Django

    v2 v3  
    66{{{
    77django-admin.py startproject mysite
     8}}}
     9Edit the settings.py file with correct DB settings
    810
    9 }}}
    1011Start test server:
    1112
     
    1314python manage.py runserver 0.0.0.0:8000
    1415}}}
     16Create an app:
     17
     18{{{
     19python manage.py startapp polls
     20}}}
     21Activate the app by editing the settings.py file again, and change the INSTALLED_APPS to include the project