Files
templates/blueprints/chatto/template.toml
Marios Antonoudiou 39d6d0430a Introduce chatto app template (#962)
* Introduce chatto app template

* Clean up template

* Update chatto env vars
2026-07-07 13:02:09 -06:00

22 lines
455 B
TOML

[variables]
main_domain = "${domain}"
cookie_secret = "${hash:64}"
core_secret = "${hash:64}"
assets_secret = "${hash:64}"
owner_email = "${email}"
[config]
env = [
"CHATTO_HOST=${main_domain}",
"CHATTO_COOKIE_SECRET=${cookie_secret}",
"CHATTO_CORE_SECRET=${core_secret}",
"CHATTO_ASSETS_SECRET=${assets_secret}",
"CHATTO_OWNER_EMAIL=${owner_email}",
]
mounts = []
[[config.domains]]
serviceName = "chatto"
port = 4000
host = "${main_domain}"