2017-06-23 21:00:42 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
Local settings
|
|
|
|
|
|
|
|
- Run in Debug mode
|
|
|
|
- Use console backend for emails
|
|
|
|
- Add Django Debug Toolbar
|
|
|
|
- Add django-extensions as app
|
|
|
|
'''
|
|
|
|
|
|
|
|
from .common import * # noqa
|
|
|
|
|
|
|
|
# DEBUG
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
DEBUG = env.bool('DJANGO_DEBUG', default=True)
|
|
|
|
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
|
|
|
|
|
|
|
|
# SECRET CONFIGURATION
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
|
|
|
|
# Note: This key only used for development and testing.
|
|
|
|
SECRET_KEY = env("DJANGO_SECRET_KEY", default='mc$&b=5j#6^bv7tld1gyjp2&+^-qrdy=0sw@r5sua*1zp4fmxc')
|
|
|
|
|
|
|
|
# Mail settings
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
EMAIL_HOST = 'localhost'
|
|
|
|
EMAIL_PORT = 1025
|
|
|
|
|
|
|
|
# django-debug-toolbar
|
|
|
|
# ------------------------------------------------------------------------------
|
2017-12-15 22:48:45 +00:00
|
|
|
MIDDLEWARE += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
|
2017-06-23 21:00:42 +00:00
|
|
|
|
|
|
|
# INTERNAL_IPS = ('127.0.0.1', '10.0.2.2',)
|
|
|
|
|
|
|
|
DEBUG_TOOLBAR_CONFIG = {
|
|
|
|
'DISABLE_PANELS': [
|
|
|
|
'debug_toolbar.panels.redirects.RedirectsPanel',
|
|
|
|
],
|
|
|
|
'SHOW_TEMPLATE_CONTEXT': True,
|
|
|
|
'SHOW_TOOLBAR_CALLBACK': lambda request: True,
|
|
|
|
}
|
|
|
|
|
|
|
|
# django-extensions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# INSTALLED_APPS += ('django_extensions', )
|
|
|
|
INSTALLED_APPS += ('debug_toolbar', )
|
|
|
|
|
|
|
|
# TESTING
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
|
|
|
|
########## CELERY
|
|
|
|
# In development, all tasks will be executed locally by blocking until the task returns
|
2017-12-26 20:12:37 +00:00
|
|
|
CELERY_TASK_ALWAYS_EAGER = False
|
2017-06-23 21:00:42 +00:00
|
|
|
########## END CELERY
|
|
|
|
|
|
|
|
# Your local stuff: Below this line define 3rd party library settings
|
|
|
|
|
|
|
|
LOGGING = {
|
|
|
|
'version': 1,
|
|
|
|
'handlers': {
|
|
|
|
'console':{
|
|
|
|
'level':'DEBUG',
|
|
|
|
'class':'logging.StreamHandler',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'loggers': {
|
|
|
|
'django.request': {
|
|
|
|
'handlers':['console'],
|
|
|
|
'propagate': True,
|
|
|
|
'level':'DEBUG',
|
2018-03-31 16:41:53 +00:00
|
|
|
},
|
|
|
|
'': {
|
|
|
|
'level': 'DEBUG',
|
|
|
|
'handlers': ['console'],
|
|
|
|
},
|
2017-06-23 21:00:42 +00:00
|
|
|
},
|
|
|
|
}
|
2018-06-02 07:21:55 +00:00
|
|
|
CSRF_TRUSTED_ORIGINS = [o for o in ALLOWED_HOSTS]
|