Files
templates/blueprints/flowise/template.toml
Jainil Prajapati 6df93c4c02 feat(flowise): add Flowise blueprint with Docker Compose and template configuration (#354)
- Added Flowise metadata to meta.json with relevant details including ID, name, version, description, logo, links, and tags.
- Created Docker Compose file for Flowise, defining services for Redis and Flowise, including health checks and environment variables.
- Added image for Flowise logo.
- Created template.toml for Flowise configuration, specifying variables, domains, environment variables, and mounts.
2025-09-13 21:51:59 -06:00

25 lines
508 B
TOML

[variables]
main_domain = "${domain}"
jwt_secret = "${password:32}"
jwt_refresh_secret = "${password:32}"
express_secret = "${password:32}"
[config]
[[config.domains]]
serviceName = "flowise"
port = 3000
host = "${main_domain}"
[config.env]
JWT_AUTH_TOKEN_SECRET = "${jwt_secret}"
JWT_REFRESH_TOKEN_SECRET = "${jwt_refresh_secret}"
EXPRESS_SESSION_SECRET = "${express_secret}"
[[config.mounts]]
name = "flowise_data"
mountPath = "/root/.flowise"
[[config.mounts]]
name = "redis_data"
mountPath = "/data"