Clean out stuff

This commit is contained in:
Matthew Ryan Dillon 2016-06-08 11:49:05 -07:00
parent fd5927c31a
commit d7b1910839
47 changed files with 13 additions and 1089 deletions

View file

@ -13,24 +13,21 @@ env = environ.Env()
# APP CONFIGURATION
# ------------------------------------------------------------------------------
DJANGO_APPS = (
# Default Django apps:
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Admin
'grappelli',
'django.contrib.admin',
)
THIRD_PARTY_APPS = (
'crispy_forms', # Form layouts
'allauth', # registration
'allauth.account', # registration
'bootstrap3', # bootstrappin'
'django_tables2', # data grids
'crispy_forms',
'allauth',
'allauth.account',
'bootstrap3',
'django_tables2',
)
# Apps specific for this project go here.
@ -64,12 +61,6 @@ MIDDLEWARE_CLASSES = (
'ccdb.users.middleware.TimezoneMiddleware',
)
# MIGRATIONS CONFIGURATION
# ------------------------------------------------------------------------------
MIGRATION_MODULES = {
'sites': 'ccdb.contrib.sites.migrations'
}
# DEBUG
# ------------------------------------------------------------------------------
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
@ -125,9 +116,6 @@ LOCALE_PATHS = [
'locale',
]
# See: https://docs.djangoproject.com/en/dev/ref/settings/#site-id
SITE_ID = 1
# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-i18n
USE_I18N = True