Skip to content

Instantly share code, notes, and snippets.

@magmax
Created August 15, 2011 07:33
Show Gist options
  • Save magmax/1145852 to your computer and use it in GitHub Desktop.
Save magmax/1145852 to your computer and use it in GitHub Desktop.
Django: Creación de un site.
$ 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