Files
templates/blueprints/usesend/template.toml
Vincent Vu dd1bc1e8f8 feat(blueprints): replace unsend with usesend configuration (#350)
* feat(blueprint): added docuseal

* feat: add Docuseal document management system

* feat: restructure docker-compose for Docuseal application setup

* feat(docker-compose): remove unused port mapping and clean up redis service configuration

* Update blueprints/docuseal/docker-compose.yml

* Update blueprints/docuseal/docker-compose.yml

* Update blueprints/docuseal/template.toml

* This PR replaces and supersedes #39.

Changes and improvements:
- Fully resolved merge conflict in meta.json
- Added missing JWT secret handling using `${password:32}`
- Synced `template.toml` and `docker-compose.yml` with proper environment variable mapping
- Ensured domain and service configuration matches Dokploy standards
- Minor cleanup for clarity and deployment safety

Original credit to @maelpr for the initial submission.

This version ensures a clean, deployable, and secure Dokploy template for Kutt.

* fix: add missing commas in environment variable definitions

* Update blueprints/kutt/template.toml

* feat(blueprints): replace unsend with usesend configuration

* feat(meta): add Uptime Kuma monitoring tool to the blueprint

* fix(docker-compose): update MinIO image to latest version

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-09-13 22:13:38 -06:00

28 lines
635 B
TOML

[variables]
main_domain = "${domain}"
secret_base = "${base64:64}"
[config]
mounts = []
[[config.domains]]
serviceName = "usesend"
port = 3_000
host = "${main_domain}"
[config.env]
REDIS_URL = "redis://usesend-redis-prod:6379"
POSTGRES_USER = "postgres"
POSTGRES_PASSWORD = "postgres"
POSTGRES_DB = "usesend"
DATABASE_URL = "postgresql://postgres:postgres@usesend-db-prod:5432/usesend"
NEXTAUTH_URL = "http://localhost:3000"
NEXTAUTH_SECRET = "${secret_base}"
GITHUB_ID = "'Fill'"
GITHUB_SECRET = "'Fill'"
AWS_DEFAULT_REGION = "us-east-1"
AWS_SECRET_KEY = "'Fill'"
AWS_ACCESS_KEY = "'Fill'"
DOCKER_OUTPUT = "1"
API_RATE_LIMIT = "1"