Skip to content

Instantly share code, notes, and snippets.

@rafaelcanovas
Created January 29, 2014 18:01
Show Gist options
  • Save rafaelcanovas/8693410 to your computer and use it in GitHub Desktop.
Save rafaelcanovas/8693410 to your computer and use it in GitHub Desktop.
$ django-admin.py startproject myproject .
$ ./manage.py startapp myapp
$ tree . -d -L 2
.
├── manage.py
├── myapp
│   ├── admin.py
│   ├── __init__.py
│   ├── models.py
│   ├── tests.py
│   └── views.py
├── myproject
│   ├── __init__.py
│   ├── __pycache__
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
└── venv
├── bin
├── include
└── lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment