Skip to content

Instantly share code, notes, and snippets.

@PCreations
Created July 23, 2015 22:25
Show Gist options
  • Select an option

  • Save PCreations/60b0b9f0880e4ee3c2c9 to your computer and use it in GitHub Desktop.

Select an option

Save PCreations/60b0b9f0880e4ee3c2c9 to your computer and use it in GitHub Desktop.
DJANGO_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
)
THIRD_PARTY_APPS = (
'some.third.party.app',
'some.other.third.party.app',
...,
)
PROJECT_APPS = (
'project_app_1',
'project_app_2',
...,
)
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + PROJECT_APPS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment