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.
13 lines
413 B
13 lines
413 B
from .base import *
|
|
|
|
# Email user settings
|
|
ADMINS = (
|
|
('Dmitriy Belousov', 'dimkasp@mail.ru'),
|
|
)
|
|
|
|
MANAGERS = ADMINS
|
|
DEFAULT_FROM_EMAIL = 'notreply@russianprograms'
|
|
|
|
# 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')
|
|
|