Files
templates/blueprints/bugsink/template.toml
Jainil Prajapati 719ad62852 feat(bugsink): migrate from MySQL to PostgreSQL and update configuration (#388)
- Replace MySQL 8.4 with PostgreSQL 17-alpine for better performance
- Update environment variables to use POSTGRES_* naming convention
- Change health checks to use pg_isready for PostgreSQL compatibility
- Update template.toml to reflect new database and configuration structure
- Set version to 'latest' in meta.json for continuous updates
2025-09-25 20:54:42 -06:00

25 lines
567 B
TOML

[variables]
main_domain = "${domain}"
postgres_user = "bugsinkuser"
postgres_password = "${password:32}"
postgres_db = "bugsink"
secret_key = "${password:64}"
superuser = "admin:admin"
behind_https_proxy = "false"
[config]
[[config.domains]]
serviceName = "web"
port = 8000
host = "${main_domain}"
[config.env]
POSTGRES_USER = "${postgres_user}"
POSTGRES_PASSWORD = "${postgres_password}"
POSTGRES_DB = "${postgres_db}"
SECRET_KEY = "${secret_key}"
CREATE_SUPERUSER = "${superuser}"
BEHIND_HTTPS_PROXY = "${behind_https_proxy}"
BASE_URL = "https://${main_domain}"