Skip to content

Instantly share code, notes, and snippets.

@kartikv11
Last active October 10, 2017 11:19
Show Gist options
  • Save kartikv11/228d97436d3e41ed8cacd12fd35babee to your computer and use it in GitHub Desktop.
Save kartikv11/228d97436d3e41ed8cacd12fd35babee to your computer and use it in GitHub Desktop.
Django App structure (with Settings Module)
myapp/
├── manage.py
└── myapp
  ├── __init__.py
  ├── settings
  │ ├── __init__.py
  │ ├── base.py
  │ ├── dev.py
  │ ├── feature.py
  │ ├── pre_prod.py
  │ └── production.py
  ├── urls.py
  └── wsgi.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment