#!/usr/bin/env bash # render-config.sh — turn *.tmpl files into real configs via envsubst. # Substitutes ONLY a small whitelist so literal $-syntax that belongs to the # target file (caddy, toml) is left untouched. # Halts on any unset var or missing template (cautious: no half-rendered output). set -euo pipefail cd "$(dirname "$0")/.." # repo root [ -f .env ] && { set -a; . ./.env; set +a; } : "${BASE_DOMAIN:?BASE_DOMAIN unset (set in .env)}" # REGISTRATION_MODE (invite|open) -> Drasl RequireInvite boolean. drasl is # TOML-only with no env support, so we derive the literal here and substitute it. : "${REGISTRATION_MODE:=invite}" case "$REGISTRATION_MODE" in invite) REGISTRATION_REQUIRE_INVITE=true ;; open) REGISTRATION_REQUIRE_INVITE=false ;; *) echo "REGISTRATION_MODE must be 'invite' or 'open' (got '$REGISTRATION_MODE')" >&2; exit 1 ;; esac export REGISTRATION_REQUIRE_INVITE render() { # $1=template $2=output [ -f "$1" ] || { echo "missing template: $1" >&2; exit 1; } envsubst '${BASE_DOMAIN} ${REGISTRATION_REQUIRE_INVITE}' < "$1" > "$2" echo "rendered $2" } render drasl/config/config.toml.tmpl drasl/config/config.toml render nmsr/config.toml.tmpl nmsr/config.toml # Server mods are no longer rendered here — they come from the distribution repo # via tooling/sync-server-mods.sh (run separately in the deploy flow). See # plan/04-mods.md.