Files
templates/blueprints/rote/template.toml
Rabithua ac07aa2ed8 feat: add Rote template
- Add Rote deployment template with frontend, backend, and PostgreSQL services
- Configure domain routing for frontend (port 80) and backend (port 3000)
- Set up automatic password generation and environment variables
- Use latest image tag by default
- Add logo and metadata to meta.json
2025-11-25 20:03:46 +08:00

24 lines
461 B
TOML

[variables]
frontend_domain = "${domain}"
backend_domain = "${domain}"
postgres_password = "${password:32}"
image_tag = "latest"
[config]
[[config.domains]]
serviceName = "rote-frontend"
port = 80
host = "${frontend_domain}"
[[config.domains]]
serviceName = "rote-backend"
port = 3000
host = "${backend_domain}"
[config.env]
POSTGRES_PASSWORD = "${postgres_password}"
IMAGE_TAG = "${image_tag}"
VITE_API_BASE = "https://${backend_domain}"
[[config.mounts]]