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.
43 lines
1.1 KiB
43 lines
1.1 KiB
from os import path |
|
from pathlib import Path |
|
|
|
# SECURITY WARNING: don't run with debug turned on in production! |
|
DEBUG = False |
|
# SECURITY WARNING: keep the secret key used in production secret! |
|
SECRET_KEY = 'django-insecure-aaaa' |
|
|
|
SALT = 'aaaaaaaa' |
|
ALLOWED_HOSTS = ['localhost'] |
|
|
|
CSRF_TRUSTED_ORIGINS = ['http://zakonvremeni.ru:8989',] |
|
|
|
# Если False, то данные в .env хранятся в открытом виде, |
|
# иначе в зашифрованном. |
|
ENV_ENCODED = False |
|
|
|
LOG_DIR = path.join(Path(__file__).resolve().parent.parent.parent, 'logs/') |
|
|
|
LOGGING = { |
|
'version': 1, |
|
'disable_existing_loggers': False, |
|
'formatters': { |
|
'standard': { |
|
'format': '%(asctime)s [%(levelname)s]- %(message)s' |
|
} |
|
}, |
|
'handlers': { |
|
'file': { |
|
'level': 'ERROR', |
|
'class': 'logging.FileHandler', |
|
'filename': LOG_DIR + 'application.log', |
|
'formatter': 'standard' |
|
}, |
|
}, |
|
'loggers': { |
|
'django': { |
|
'handlers': ['file'], |
|
'level': 'ERROR', |
|
'propagate': True, |
|
}, |
|
}, |
|
}
|
|
|