mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
21 lines
429 B
YAML
21 lines
429 B
YAML
variables:
|
|
main_domain: ${domain}
|
|
db_password: ${password}
|
|
db_user: "twenty"
|
|
app_secret: ${base64:32}
|
|
|
|
config:
|
|
domains:
|
|
- serviceName: twenty-server
|
|
port: 3000
|
|
host: ${main_domain}
|
|
|
|
env:
|
|
TWENTY_HOST: ${main_domain}
|
|
DB_USER: ${db_user}
|
|
DB_PASSWORD: ${db_password}
|
|
APP_SECRET: ${app_secret}
|
|
# Optional: Configure storage path
|
|
# STORAGE_LOCAL_PATH: ".local-storage"
|
|
|
|
mounts: [] |