templates/blueprints/commento/template.toml
Mauricio Siu 3e2083df18 Add Commento blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Commento service, including environment variables for domain and PostgreSQL configuration.
- Added logo for Commento.
- Created template.toml for Commento with default variables for configuration.
2025-03-30 21:17:41 -06:00

14 lines
351 B
TOML

[variables]
DOMAIN = "${domain}"
POSTGRES_PASSWORD = "${password:16}"
[config]
[[config.domains]]
serviceName = "commento"
port = 8080
host = "${DOMAIN}"
[config.env]
COMMENTO_ORIGIN = "http://${DOMAIN}"
COMMENTO_POSTGRES = "postgres://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres?sslmode=disable"
POSTGRES_PASSWORD = "${POSTGRES_PASSWORD}"