from .base import * # Email user settings ADMINS = ( ('Dmitriy Belousov', 'dimkasp@mail.ru'), ) MANAGERS = ADMINS DEFAULT_FROM_EMAIL = 'order@russian-programs.ru' # Logging LOGGING['handlers']['production_file']['filename'] = os.path.join(os.path.dirname(BASE_DIR),'logs/eshop_main_prod.log') LOGGING['handlers']['debug_file']['filename'] = os.path.join(os.path.dirname(BASE_DIR),'logs/eshop_main_dev.log')