Files
templates/blueprints/rustrak/template.toml
Abian Suarez 641fd75bf7 feat: add rustrak and rustrak-full templates (#866)
* feat: add rustrak and rustrak-full templates

- rustrak: server-only with SQLite, single service, no external DB
- rustrak-full: server + Next.js dashboard + PostgreSQL
Both use abians7/rustrak-server:v0.2.1, Sentry-compatible error tracking

* chore: update rustrak logo to new design
2026-07-07 15:44:33 -06:00

18 lines
377 B
TOML

[variables]
main_domain = "${domain}"
session_secret_key = "${password:64}"
admin_email = "${email}"
admin_password = "${password:16}"
create_superuser = "${admin_email}:${admin_password}"
[config]
env = [
"SESSION_SECRET_KEY=${session_secret_key}",
"CREATE_SUPERUSER=${create_superuser}",
]
[[config.domains]]
serviceName = "rustrak"
port = 8080
host = "${main_domain}"