mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* 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>
20 lines
592 B
TOML
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}" |