Files
templates/blueprints/blinko/template.toml
Jainil Prajapati 🪐 6713733ec1 Refactor Blinko blueprint configuration and environment handling (#255)
* Refactor Blinko blueprint configuration and environment handling

* Standardize tag formatting in meta.json

* FIX-Validating meta.json against blueprint folders and logos

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-08-02 00:16:54 -06:00

20 lines
592 B
TOML

[variables]
main_domain = "${domain}"
postgres_password = "${password:32}"
nextauth_secret = "${password:32}"
database_url = "postgresql://postgres:${postgres_password}@blinko-postgres:5432/postgres"
nextauth_url = "http://${main_domain}"
next_public_base_url = "http://${main_domain}"
[config]
[[config.domains]]
serviceName = "blinko-website"
port = 1111
host = "${main_domain}"
[config.env]
NEXTAUTH_SECRET = "${nextauth_secret}"
POSTGRES_PASSWORD = "${postgres_password}"
DATABASE_URL = "${database_url}"
NEXTAUTH_URL = "${nextauth_url}"
NEXT_PUBLIC_BASE_URL = "${next_public_base_url}"