Created
August 15, 2011 07:33
Revisions
-
magmax revised this gist
Aug 15, 2011 . 1 changed file with 10 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,19 @@ $ django-admin startproject myblog $ cd myblog $ python manage.py startapp blog $ tree . |-- blog | |-- __init__.py | |-- models.py | |-- tests.py | `-- views.py |-- __init__.py |-- __init__.pyc |-- manage.py |-- settings.py |-- settings.pyc `-- urls.py 1 directory, 10 files $ -
magmax created this gist
Aug 15, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ $ django-admin startproject myblog $ cd myblog $ tree . |-- __init__.py |-- manage.py |-- settings.py `-- urls.py 0 directories, 4 files $