Skip to content

Instantly share code, notes, and snippets.

@leetrout
Created September 18, 2011 17:34
Show Gist options
  • Save leetrout/1225309 to your computer and use it in GitHub Desktop.
Save leetrout/1225309 to your computer and use it in GitHub Desktop.
App layout
my_project/
...config/
......prod/
.........__init__.py
.........settings.py
.........urls.py
......dev/
.........__init__.py
.........settings.py
.........urls.py
my_project/config/prod/__init__.py
import settings
import urls
my_project/config/dev/settings.py
from my_project.config.prod.settings import *
my_project/config/__init__.py
import prod
import dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment