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