Files
templates/blueprints/typesense/template.toml
Maximilian Walterskirchen a55f98f1b7 Add Typesense blueprint with Docker Compose setup and update meta.json (#275)
- Introduced Typesense service with Docker Compose configuration.
- Added Typesense template for environment variables and configuration.
- Updated meta.json to include Typesense entry and formatted tags for consistency.

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-08-22 23:04:44 -06:00

13 lines
257 B
TOML

[variables]
main_domain = "${domain}"
api_key = "${password:16}"
enable_cors = "true"
[config]
env = ["TYPESENSE_API_KEY=${api_key}", "TYPESENSE_ENABLE_CORS=${enable_cors}"]
[[config.domains]]
serviceName = "typesense"
port = 8108
host = "${main_domain}"