Files
templates/blueprints/stack-auth/template.toml
2025-04-05 23:00:24 -08:00

24 lines
619 B
TOML

[variables]
main_domain = "${domain}"
postgres_password = "${password:32}"
stack_auth_api_url = "${main_domain}:8102"
stack_auth_dashboard_url = "${main_domain}:8101"
stack_auth_postgres_host = "db"
[config.env]
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="${postgres_password}"
POSTGRES_DB="stackframe"
NEXT_PUBLIC_STACK_API_URL="${stack_auth_api_url}"
[[config.domains]]
serviceName = "stack-auth-api"
port = 8102
host = "${stack_auth_api_url}"
path = "/"
[[config.domains]]
serviceName = "stack-auth-dashboard"
port = 8101
host = "${stack_auth_dashboard_url}"
path = "/"