mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-18 20:35:26 +02:00
* Add Kuno i18n blog template with improved tag formatting in meta.json * Update i18n-blog blueprint with Kuno volume configuration and JWT secret setup * Changed Port * Updated * update meta.json * feat: add i18n Blog (Kuno) entry to meta.json - Introduced a new application entry for i18n Blog (Kuno), detailing its version, description, logo, and relevant links. - Categorized the application with appropriate tags for better discoverability. - Removed the previous duplicate entry for i18n Blog to streamline the application catalog. --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
25 lines
493 B
TOML
25 lines
493 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
jwt_secret = "${password:32}" # secure default
|
|
recovery_mode = "false"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "kuno"
|
|
port = 80
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
NEXT_PUBLIC_API_URL = "https://${main_domain}/api"
|
|
DB_PATH = "/app/data/blog.db"
|
|
UPLOAD_DIR = "/app/data/uploads"
|
|
GIN_MODE = "release"
|
|
NODE_ENV = "production"
|
|
JWT_SECRET = "${jwt_secret}"
|
|
RECOVERY_MODE = "${recovery_mode}"
|
|
|
|
[[config.mounts]]
|
|
name = "kuno-data"
|
|
mountPath = "/app/data"
|