Archived
3
0

extract config to external files
Some checks failed
Check indentation / build (push) Has been cancelled
Continuous testing / build (push) Has been cancelled

This commit is contained in:
2025-03-12 23:08:40 +01:00
parent 975ebedace
commit 5513042b1b
10 changed files with 193 additions and 46 deletions

View File

@@ -1,16 +1,28 @@
{
"prod": {
"sock_path": "/run/zmp24/zmp24.sock",
"db": "/data/db"
"io": {
"sock_path": "/run/zmp24/zmp24.sock"
},
"database": {
"path": "/data/db"
}
},
"dev": {
"bind_to": "[::1]:8080",
"db": "/tmp/zmp24db"
"io": {
"bind_to": "[::1]:8080"
},
"database": {
"path": "/tmp/zmp24db"
}
},
"image": {
"name": "zmp24",
"version": "0.1"
"version": "0.2"
}
}