2014-05-25 18:50:13 +04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
2015-04-20 00:09:00 +03:00
|
|
|
Local settings
|
2014-05-25 18:50:13 +04:00
|
|
|
|
2015-04-26 08:08:23 +03:00
|
|
|
- Run in Debug mode
|
|
|
|
- Use console backend for emails
|
|
|
|
- Add Django Debug Toolbar
|
|
|
|
- Add django-extensions as app
|
2014-05-25 18:50:13 +04:00
|
|
|
'''
|
|
|
|
|
2015-04-20 15:31:55 +03:00
|
|
|
from .common import * # noqa
|
2015-04-20 00:09:00 +03:00
|
|
|
|
|
|
|
# DEBUG
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
DEBUG = env.bool('DJANGO_DEBUG', default=True)
|
2015-05-08 05:13:49 +03:00
|
|
|
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
|
2015-04-20 00:09:00 +03:00
|
|
|
|
|
|
|
# SECRET CONFIGURATION
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
|
|
|
|
# Note: This key only used for development and testing.
|
2015-04-25 16:05:33 +03:00
|
|
|
SECRET_KEY = env("DJANGO_SECRET_KEY", default='CHANGEME!!!')
|
2015-04-20 00:09:00 +03:00
|
|
|
|
|
|
|
# Mail settings
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
EMAIL_HOST = 'localhost'
|
|
|
|
EMAIL_PORT = 1025
|
2015-07-16 07:21:06 +03:00
|
|
|
{%if cookiecutter.use_maildump == "n" -%}
|
|
|
|
EMAIL_BACKEND = env('DJANGO_EMAIL_BACKEND',
|
|
|
|
default='django.core.mail.backends.console.EmailBackend')
|
|
|
|
{%- endif %}
|
2015-04-20 00:09:00 +03:00
|
|
|
|
|
|
|
# CACHING
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
CACHES = {
|
|
|
|
'default': {
|
|
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
|
|
'LOCATION': ''
|
|
|
|
}
|
|
|
|
}
|
2014-05-25 18:50:13 +04:00
|
|
|
|
2015-04-20 00:09:00 +03:00
|
|
|
# django-debug-toolbar
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
|
2015-04-26 08:08:23 +03:00
|
|
|
INSTALLED_APPS += ('debug_toolbar', )
|
2014-05-25 18:50:13 +04:00
|
|
|
|
2015-04-20 00:09:00 +03:00
|
|
|
INTERNAL_IPS = ('127.0.0.1', '10.0.2.2',)
|
2014-05-25 18:50:13 +04:00
|
|
|
|
2015-04-20 00:09:00 +03:00
|
|
|
DEBUG_TOOLBAR_CONFIG = {
|
|
|
|
'DISABLE_PANELS': [
|
|
|
|
'debug_toolbar.panels.redirects.RedirectsPanel',
|
|
|
|
],
|
|
|
|
'SHOW_TEMPLATE_CONTEXT': True,
|
|
|
|
}
|
2014-05-25 18:50:13 +04:00
|
|
|
|
2015-04-26 08:08:23 +03:00
|
|
|
# django-extensions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
INSTALLED_APPS += ('django_extensions', )
|
|
|
|
|
2015-04-25 16:05:33 +03:00
|
|
|
# TESTING
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
2014-10-12 12:32:17 +04:00
|
|
|
{% if cookiecutter.celery_support == "y" %}
|
|
|
|
########## CELERY
|
|
|
|
# In development, all tasks will be executed locally by blocking until the task returns
|
|
|
|
CELERY_ALWAYS_EAGER = True
|
|
|
|
########## END CELERY
|
|
|
|
{% endif %}
|
2015-04-20 00:09:00 +03:00
|
|
|
# Your local stuff: Below this line define 3rd party library settings
|