mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-03 13:05:25 +02:00
* Add Kener entry to meta.json and improve JSON encoding in TemplateDialog - Introduced Kener, an open-source status page system, to meta.json with relevant links and tags. - Updated TemplateDialog to use encodeURIComponent for proper handling of Unicode characters in JSON encoding. - Removed unnecessary console log from TemplateGrid for cleaner code. * Update Kener logo in meta.json and remove old logo file - Changed the logo reference for Kener in meta.json from 'kener.png' to 'image.png'. - Deleted the outdated 'kener.png' file from the repository. * Add GitLab CE entry to meta.json - Introduced GitLab Community Edition with a detailed description, logo, and relevant links. - Updated tags for better categorization, including 'git', 'ci-cd', 'version-control', and 'project-management'.
38 lines
923 B
TOML
38 lines
923 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
KENER_SECRET_KEY = "${password:64}"
|
|
POSTGRES_PASSWORD = "${password:32}"
|
|
MYSQL_PASSWORD = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "kener"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
TZ = "Etc/UTC"
|
|
KENER_SECRET_KEY = "${KENER_SECRET_KEY}" # 🔐 API key / secret
|
|
DATABASE_URL = "sqlite://./database/kener.sqlite.db"
|
|
KENER_BASE_PATH = ""
|
|
ORIGIN = "http://localhost:3000"
|
|
RESEND_API_KEY = ""
|
|
RESEND_SENDER_EMAIL = "Accounts <accounts@resend.dev>"
|
|
POSTGRES_USER = "user"
|
|
POSTGRES_DB = "kener_db"
|
|
MYSQL_USER = "user"
|
|
MYSQL_DATABASE = "kener_db"
|
|
MYSQL_RANDOM_ROOT_PASSWORD = "true"
|
|
MYSQL_PASSWORD = "${MYSQL_PASSWORD}" # 🔐 DB password
|
|
POSTGRES_PASSWORD = "${POSTGRES_PASSWORD}" # 🔐 DB password
|
|
|
|
[[config.mounts]]
|
|
type = "volume"
|
|
source = "kener_db"
|
|
target = "/app/database"
|
|
|
|
[[config.mounts]]
|
|
type = "bind"
|
|
source = "../files/uploads"
|
|
target = "/app/uploads"
|