Refactor
All checks were successful
build docker image / docker-build (push) Successful in 1m21s

This commit is contained in:
2025-02-13 18:16:12 +02:00
parent 10f890012a
commit fb7324d348
10 changed files with 38 additions and 83 deletions

7
conf/admin-conf.json Normal file
View File

@ -0,0 +1,7 @@
{
"title": "Script server",
"port": "5000",
"access": {
"admin_users": [ "*" ]
}
}

31
conf/logging.json Normal file
View File

@ -0,0 +1,31 @@
{
"version": 1,
"disable_existing_loggers": false,
"formatters": {
"simple": {
"format": "%(asctime)s [%(name)s.%(levelname)s] %(message)s"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": "DEBUG",
"formatter": "simple",
"stream": "ext://sys.stdout"
},
"file": {
"class": "logging.FileHandler",
"level": "INFO",
"formatter": "simple"
}
},
"loggers": {
},
"root": {
"level": "DEBUG",
"handlers": [
"console",
"file"
]
}
}

0
conf/runners/.gitkeep Normal file
View File

0
conf/scripts/.gitkeep Normal file
View File