templates/blueprints/argilla/template.toml
Mauricio Siu c0218e8e2e Add Argilla blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Argilla service, including web, worker, Elasticsearch, PostgreSQL, and Redis components.
- Added logo for Argilla.
- Created template.toml for Argilla with default variables for configuration.
2025-03-30 14:27:32 -06:00

19 lines
445 B
TOML

[variables]
main_domain = "${domain}"
login_username = "${username}"
login_password = "${password:8}"
db_password = "${password:16}"
redis_password = "${password:16}"
[config]
[[config.domains]]
serviceName = "argilla-web"
port = 6900
host = "${main_domain}"
[config.env]
LOGIN_USERNAME = "${login_username}"
LOGIN_PASSWORD = "${login_password}"
DB_PASSWORD = "${db_password}"
REDIS_PASSWORD = "${redis_password}"
BACKGROUND_NUM_WORKERS = "2"