kannon/example_config_server.json

28 lines
501 B
JSON
Raw Normal View History

2022-04-14 14:23:41 +02:00
{
"server": {
"enabled": true,
"listen": "0.0.0.0",
"port": 3000,
"heartbeat": 10000
},
"log": {
"level": "debug",
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
},
"library": {
"enabled": false
},
"database": {
"dialect": "postgres",
"storage": "/tmp/kannon.sqlite",
2022-04-20 16:15:33 +02:00
"host": "192.168.104.136",
2022-04-14 14:23:41 +02:00
"port": 5432,
"database": "kannon",
2022-04-20 16:15:33 +02:00
"username": "kannon",
"password": "kannon"
2022-04-19 15:34:10 +02:00
},
"audio": {
2022-04-21 13:43:33 +02:00
"threshold": 30,
"bufferlimit": 64
2022-04-14 14:23:41 +02:00
}
}