26 lines
650 B
TOML
26 lines
650 B
TOML
## defaults for _all_ profiles
|
|
[default]
|
|
address = "0.0.0.0"
|
|
limits = { form = "64 kB", json = "1 MiB" }
|
|
secret_key = "b613679a0814d9ec772f95d778c35fc5ff1697c493715653c6c712144292c5ad"
|
|
|
|
[default.databases.bookkeeper]
|
|
url = "sqlite://bookkeeper.db"
|
|
|
|
## set only when compiled in debug mode, i.e, `cargo build`
|
|
[debug]
|
|
port = 8000
|
|
## only the `json` key from `default` will be overridden; `form` will remain
|
|
limits = { json = "10MiB" }
|
|
|
|
## set only when the `nyc` profile is selected
|
|
[nyc]
|
|
port = 9001
|
|
|
|
## set only when compiled in release mode, i.e, `cargo build --release`
|
|
[release]
|
|
port = 9999
|
|
ip_header = false
|
|
|
|
[global.templates]
|
|
dir = "templates" |