Files
templates/blueprints/wuzapi/template.toml
Harshal Rathore c3e83d75c6 feat: add wuzapi template (#679)
* feat: add wuzapi template

* chore: remove temporary meta_entry.json

* fix(wuzapi): remove explicit networks and simplify depends_on for Dokploy compatibility

* fix(wuzapi): remove invalid config.mounts from template.toml

* Update Docker images for wuzapi and PostgreSQL

fixed the version of the wuzapi docker image.
2026-02-15 20:49:26 -06:00

21 lines
447 B
TOML

[variables]
main_domain = "${domain}"
admin_token = "${password:32}"
encryption_key = "${password:32}"
db_user = "wuzapi"
db_password = "${password:32}"
db_name = "wuzapi"
[config]
[[config.domains]]
serviceName = "wuzapi-server"
port = 8080
host = "${main_domain}"
[config.env]
WUZAPI_ADMIN_TOKEN = "${admin_token}"
WUZAPI_GLOBAL_ENCRYPTION_KEY = "${encryption_key}"
DB_USER = "${db_user}"
DB_PASSWORD = "${db_password}"
DB_NAME = "${db_name}"