Skip to content

Instantly share code, notes, and snippets.

@kennethlove
Created November 12, 2012 21:52
Show Gist options
  • Save kennethlove/4062182 to your computer and use it in GitHub Desktop.
Save kennethlove/4062182 to your computer and use it in GitHub Desktop.
DJANGO_APPS = (
"django.contrib.auth",
...
)
THIRD_PARTY_APPS = (
"south",
...
)
LOCAL_APPS = (
"bookapp",
)
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
@dstegelman
Copy link

I like this, but is it simply for organization or does it have a broader purpose?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment