mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-12 01:56:43 -05:00
* feat: add Flatnotes blueprint with TOTP authentication Introduces a new blueprint for deploying Flatnotes with TOTP-based 2FA, including compose, template, and metadata files. * feat: add Flatnotes self-hosted markdown note-taking app
33 lines
761 B
TOML
33 lines
761 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
username = "${username}"
|
|
password = "${password:16}"
|
|
secret_key = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "flatnotes"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
PUID = "1000"
|
|
PGID = "1000"
|
|
FLATNOTES_AUTH_TYPE = "password"
|
|
FLATNOTES_USERNAME = "${username}"
|
|
FLATNOTES_PASSWORD = "${password}"
|
|
FLATNOTES_SECRET_KEY = "${secret_key}"
|
|
FLATNOTES_SESSION_EXPIRY_DAYS = "30"
|
|
FLATNOTES_TOTP_KEY = ""
|
|
FLATNOTES_PATH_PREFIX = ""
|
|
FLATNOTES_QUICK_ACCESS_HIDE = "false"
|
|
FLATNOTES_QUICK_ACCESS_TITLE = "RECENTLY MODIFIED"
|
|
FLATNOTES_QUICK_ACCESS_TERM = "*"
|
|
FLATNOTES_QUICK_ACCESS_SORT = "lastModified"
|
|
FLATNOTES_QUICK_ACCESS_LIMIT = "4"
|
|
|
|
[[config.mounts]]
|
|
name = "flatnotes-data"
|
|
mountPath = "/data"
|