Created
August 15, 2011 07:33
-
-
Save magmax/1145852 to your computer and use it in GitHub Desktop.
Django: Creación de un site.
This file contains 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 characters
$ 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 | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment