mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* add EZBookkeeping entry * Add GitLab CE entry to meta.json - Introduced a new entry for GitLab Community Edition, including its description, logo, and relevant links. - Added tags for better categorization: git, ci-cd, version-control, project-management.
31 lines
776 B
TOML
31 lines
776 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_name = "ezbookkeeping"
|
|
db_user = "ezbookkeeping"
|
|
db_pass = "${password:32}"
|
|
root_pass = "${password:32}"
|
|
secret_key = "${password:64}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "ezbookkeeping"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
MYSQL_ROOT_PASSWORD = "${root_pass}"
|
|
MYSQL_DATABASE = "${db_name}"
|
|
MYSQL_USER = "${db_user}"
|
|
MYSQL_PASSWORD = "${db_pass}"
|
|
EBK_SERVER_DOMAIN = "${main_domain}"
|
|
EBK_SERVER_ENABLE_GZIP = "true"
|
|
EBK_DATABASE_TYPE = "mysql"
|
|
EBK_DATABASE_HOST = "mysql:3306"
|
|
EBK_DATABASE_NAME = "${db_name}"
|
|
EBK_DATABASE_USER = "${db_user}"
|
|
EBK_DATABASE_PASSWD = "${db_pass}"
|
|
EBK_LOG_MODE = "file"
|
|
# Security secret key used for application protection
|
|
EBK_SECURITY_SECRET_KEY = "${secret_key}"
|
|
|
|
[[config.mounts]] |