Files
khadhroony-bot3/config/exemples/example.store.config.json
2026-08-10 11:21:07 +02:00

27 lines
625 B
JSON

{
"default_profile": "local_devnet",
"profiles": [
{
"name": "local_devnet",
"database": {
"enabled": true,
"backend": "postgres",
"postgres": {
"url": "${KS_SECRET_POSTGRES_DEVNET_URL}",
"max_connections": 8,
"connect_timeout_ms": 5000,
"auto_initialize_schema": true
},
"sqlite": {
"path": "data/local.sqlite",
"create_if_missing": true,
"busy_timeout_ms": 5000,
"max_connections": 1,
"auto_initialize_schema": true,
"use_wal": true
}
}
}
]
}