Files
templates/blueprints/paymenter/template.toml
devdamo 954cefe0cb Add Paymenter blueprint and metadata (#371)
* Add Paymenter blueprint and metadata

Introduces a new blueprint for Paymenter, including Docker Compose configuration, template variables, and an icon. Updates meta.json to register Paymenter with relevant metadata, description, links, and tags for billing and payment management.

* Add debug and proxy settings to Paymenter config

Set APP_DEBUG to false and TRUSTED_PROXIES to '*' in docker-compose.yml for improved security and proxy support. Also, specify path as '/' in template.toml to clarify application root.
2025-09-15 22:51:47 -06:00

22 lines
471 B
TOML

[variables]
main_domain = "${domain}"
app_key = "${base64:32}"
mysql_password = "${password:16}"
mysql_root_password = "${password:20}"
[config]
[[config.domains]]
serviceName = "paymenter"
port = 80
host = "${main_domain}"
path = "/"
[config.env]
APP_URL = "https://${main_domain}"
APP_KEY = "base64:${app_key}"
MYSQL_PASSWORD = "${mysql_password}"
MYSQL_ROOT_PASSWORD = "${mysql_root_password}"
MYSQL_DATABASE = "paymenter"
MYSQL_USER = "paymenter"
[[config.mounts]]