], }, }, ] WSGI_APPLICATION = 'wsgi.application' # 2018/04/19: According to the documentation, bootstrap4 is still in alpha: # http://django-crispy-forms.readthedocs.io/en/latest/install.html?highlight=bootstrap4 CRISPY_TEMPLATE_PACK = 'bootstrap3' # Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases DATABASES = { 'default': database.config() } # Re-use database connections, leave connection alive for 5 mimutes CONN_MAX_AGE = 120 # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True
'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'django_settings_export.settings_export', ], }, }, ] WSGI_APPLICATION = 'wsgi.application' CRISPY_TEMPLATE_PACK = 'bootstrap3' TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' # Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases DATABASES = {'default': database.config()} # Re-use database connections, leave connection alive for 5 mimutes CONN_MAX_AGE = 120 # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True