Files
templates/blueprints/oneuptime/template.toml
2025-12-19 18:31:35 -06:00

25 lines
578 B
TOML

[variables]
main_domain = "${domain}"
oneuptime_version = "release"
database_password = "${password:32}"
redis_password = "${password:32}"
clickhouse_password = "${password:32}"
encryption_secret = "${password:64}"
[config]
env = [
"ONEUPTIME_HOST=${main_domain}",
"ONEUPTIME_VERSION=${oneuptime_version}",
"DATABASE_PASSWORD=${database_password}",
"REDIS_PASSWORD=${redis_password}",
"CLICKHOUSE_PASSWORD=${clickhouse_password}",
"ENCRYPTION_SECRET=${encryption_secret}",
]
mounts = []
[[config.domains]]
serviceName = "home"
port = 3002
host = "${main_domain}"