Properties rework, States, StatesDefinitions, DeviceLog, and Notes #37

Open
rskthomas wants to merge 104 commits from feature/states into main
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 0c837416e1 - Show all commits

View file

@ -4,6 +4,7 @@ DEMO=true
DEBUG=true DEBUG=true
ALLOWED_HOSTS=localhost,localhost:8000,127.0.0.1, ALLOWED_HOSTS=localhost,localhost:8000,127.0.0.1,
DEVICE_LOG_PATH=/tmp
STATIC_ROOT=/tmp/static/ STATIC_ROOT=/tmp/static/
MEDIA_ROOT=/tmp/media/ MEDIA_ROOT=/tmp/media/
EMAIL_HOST="mail.example.org" EMAIL_HOST="mail.example.org"

View file

@ -65,6 +65,8 @@ ENABLE_EMAIL = config("ENABLE_EMAIL", default=True, cast=bool)
EVIDENCES_DIR = config("EVIDENCES_DIR", default=os.path.join(BASE_DIR, "db")) EVIDENCES_DIR = config("EVIDENCES_DIR", default=os.path.join(BASE_DIR, "db"))
DEVICE_LOG_PATH = config("DEVICE_LOG_PATH", default="/tmp")
# Application definition # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [
@ -224,7 +226,7 @@ LOGGING = {
'device_log_file': { 'device_log_file': {
'level': 'INFO', 'level': 'INFO',
'class': 'logging.FileHandler', 'class': 'logging.FileHandler',
'filename': '/var/log/device_changes.log', 'filename': DEVICE_LOG_PATH + "/device_changes.log",
'formatter': 'verbose', 'formatter': 'verbose',
}, },
}, },