You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
474 B
18 lines
474 B
try:
|
|
from .base import *
|
|
except ImportError:
|
|
raise ImportError("Oops,can't find base settings")
|
|
|
|
# configurations for django debug toolbar
|
|
INTERNAL_IPS = ('127.0.0.1',)
|
|
|
|
MIDDLEWARE = [
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware'
|
|
] + MIDDLEWARE
|
|
INSTALLED_APPS = INSTALLED_APPS + ['debug_toolbar']
|
|
DEBUG_TOOLBAR_CONFIG = {
|
|
'RESULTS_CACHE_SIZE': 50
|
|
}
|
|
DEFAULT_FROM_EMAIL = 'order@russian-programms.ru'
|
|
CELERY_ALWAYS_EAGER = True
|
|
|
|
|