Files
templates/blueprints/commentoplusplus/template.toml
Mauricio Siu e5075ade82 Add Commento blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Commento service, including environment variables for PostgreSQL configuration.
- Added logo for Commento.
- Created template.toml for Commento with default variables for configuration.
2025-03-30 21:21:15 -06:00

18 lines
447 B
TOML

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