Improve config (json) file creation
This commit is contained in:
parent
1d4e9efa15
commit
525eb21649
6 changed files with 91 additions and 84 deletions
|
|
@ -1,18 +1,18 @@
|
|||
amends "./lib/core.pkl"
|
||||
|
||||
server {
|
||||
host = "127.0.0.1"
|
||||
port = 4419
|
||||
host = "127.0.0.1"
|
||||
port = 4419
|
||||
}
|
||||
|
||||
database = "sqlite://emgauwa-core.sqlite"
|
||||
|
||||
permissions {
|
||||
user = read("env:USER")
|
||||
group = read("env:USER")
|
||||
user = read("env:USER")
|
||||
group = read("env:USER")
|
||||
}
|
||||
|
||||
logging {
|
||||
level = "DEBUG"
|
||||
file = "stdout"
|
||||
level = read?("env:LOGGING_LEVEL") ?? "DEBUG"
|
||||
file = "stdout"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue