mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
69 lines
1.8 KiB
Python
69 lines
1.8 KiB
Python
"""Development settings and globals."""
|
|
|
|
|
|
from os.path import join, normpath
|
|
|
|
from base import *
|
|
|
|
|
|
########## DEBUG CONFIGURATION
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
|
|
DEBUG = True
|
|
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
|
|
TEMPLATE_DEBUG = DEBUG
|
|
########## END DEBUG CONFIGURATION
|
|
|
|
|
|
########## EMAIL CONFIGURATION
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-backend
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
|
########## END EMAIL CONFIGURATION
|
|
|
|
|
|
########## DATABASE CONFIGURATION
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#databases
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': normpath(join(DJANGO_ROOT, 'default.db')),
|
|
'USER': '',
|
|
'PASSWORD': '',
|
|
'HOST': '',
|
|
'PORT': '',
|
|
}
|
|
}
|
|
########## END DATABASE CONFIGURATION
|
|
|
|
|
|
########## CACHE CONFIGURATION
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#caches
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
}
|
|
}
|
|
########## END CACHE CONFIGURATION
|
|
|
|
|
|
########## TOOLBAR CONFIGURATION
|
|
# See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
|
|
INSTALLED_APPS += (
|
|
'debug_toolbar',
|
|
)
|
|
|
|
# See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
|
|
INTERNAL_IPS = ('127.0.0.1',)
|
|
|
|
# See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
|
|
MIDDLEWARE_CLASSES += (
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
)
|
|
|
|
# See: https://github.com/django-debug-toolbar/django-debug-toolbar#installation
|
|
DEBUG_TOOLBAR_CONFIG = {
|
|
'INTERCEPT_REDIRECTS': False,
|
|
'SHOW_TEMPLATE_CONTEXT': True,
|
|
}
|
|
########## END TOOLBAR CONFIGURATION
|