Files
templates/blueprints/mixpost/template.toml
Sunil Shrestha ebb9e685f9 Feat/mixpost (#457)
* feat(mixpost): add Mixpost blueprint with Docker Compose, template, logo, and metadata

* chore(mixpost): add environment variable placeholders to mixpost service in docker-compose.yml

* chore(meta): add missing newline at end of meta.json

* Update configuration values to use quotes

* Update blueprints/mixpost/template.toml

---------

Co-authored-by: Sunil Shrestha <sunil.shrestha@tekkon.com.np>
Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
2025-10-25 19:09:21 -06:00

24 lines
430 B
TOML

[variables]
main_domain = "${domain}"
mx_password = "${password:32}"
[config]
[[config.domains]]
serviceName = "mixpost"
port = 80
host = "${main_domain}"
[config.env]
APP_NAME="Mixpost"
APP_KEY="base64:ygtEUxD0fB3vUchihbUYqUzN57rfNi9ER5alJ98dWiA="
APP_DEBUG="false"
APP_DOMAIN="${main_domain}"
APP_URL="http://${APP_DOMAIN}"
DB_DATABASE="mixpost_db"
DB_USERNAME="mixpost_user"
DB_PASSWORD="${mx_password}"
[[config.mounts]]