mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* feat: add Miniflux template * fix: guard GitHub star count fallback --------- Co-authored-by: Artemis-ignis <Artemis-ignis@users.noreply.github.com>
18 lines
390 B
TOML
18 lines
390 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:32}"
|
|
admin_username = "admin"
|
|
admin_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "miniflux"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
MINIFLUX_DOMAIN = "${main_domain}"
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
ADMIN_USERNAME = "${admin_username}"
|
|
ADMIN_PASSWORD = "${admin_password}"
|