# Tooling — config rendering, pack render, ingress, fetch scripts ## Summary Scripts in `./tooling/` turn `BASE_DOMAIN` + templates into a working stack and handle ingress (nginx vhost, TLS certs) and launcher/font fetches. All are **cautious**: they halt on unset vars or missing inputs rather than emit half-broken output. Surviving scripts: - `render-config.sh` — render `*.tmpl` configs (BASE_DOMAIN only) - `render-pack.sh` — render packwiz pack templates + index - `render-nginx.sh` — render/install the host nginx vhost (TLS terminator → caddy) - `issue-letsencrypt.sh` — issue LE certs via OVH DNS-01 (see 15-letsencrypt.md) - `fetch-launcher.sh` — download Fjord launcher release assets (see 06-launcher.md) - `add-custom-mod.sh` — add a custom (non-CDN) mod to the pack - `fetch-fonts.sh` — vendor the landing page fonts (see 09-landing.md) ## render-config.sh Renders every `*.tmpl` into its real config by substituting **only** `${BASE_DOMAIN}` (so literal `$`-syntax belonging to the target file — caddy, toml — is left untouched). Caddy is excluded entirely (it reads `{$BASE_DOMAIN}` natively). Targets: - `drasl/config/config.toml.tmpl` → `drasl/config/config.toml` - `nmsr/config.toml.tmpl` → `nmsr/config.toml` It then delegates pack templates (`mods/*.pw.toml.tmpl`, CustomSkinLoader, …) + the packwiz index to `render-pack.sh` — the single source of pack render. ```bash #!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")/.." [ -f .env ] && { set -a; . ./.env; set +a; } : "${BASE_DOMAIN:?BASE_DOMAIN unset (set in .env)}" render() { # $1=tmpl $2=out [ -f "$1" ] || { echo "missing template: $1" >&2; exit 1; } envsubst '${BASE_DOMAIN}' < "$1" > "$2" echo "rendered $2" } render drasl/config/config.toml.tmpl drasl/config/config.toml render nmsr/config.toml.tmpl nmsr/config.toml tooling/render-pack.sh ``` ## render-nginx.sh Renders `nginx/ulicraft-caddy.conf.tmpl` (the host nginx that terminates TLS in front of caddy), substituting `$BASE_DOMAIN $APP_DIR $CADDY_HTTP_PORT`. Prints to stdout by default; `--install` writes to sites-available, symlinks sites-enabled, `nginx -t`, and reloads nginx. See `15-letsencrypt.md`. ## issue-letsencrypt.sh Issues a separate cert for the apex and each `LE_SUBDOMAINS` entry via acme.sh + OVH DNS-01 → `certs//{cert,key}.pem`. See `15-letsencrypt.md`. ## fetch-launcher.sh Downloads FjordLauncherUnlocked release assets → `launcher//` and maintains a `latest` symlink + stable per-OS filename symlinks. Full script in `06-launcher.md`. ## Generated / gitignored ``` drasl/config/config.toml # rendered nmsr/config.toml # rendered launcher/ # launcher assets www/ # landing build output certs/ # Let's Encrypt certs .env # secrets + host-specific ``` ## Tasks - [ ] Write `tooling/render-config.sh` (above), `chmod +x` - [ ] Write `tooling/render-pack.sh` (pack templates + index) - [ ] Write `tooling/render-nginx.sh` (see 15) - [ ] Write `tooling/issue-letsencrypt.sh` (see 15) - [ ] Write `tooling/fetch-launcher.sh` (see 06) - [ ] Add `gettext` (envsubst) + `jq` to host prereqs doc - [ ] Update `.gitignore` for rendered configs + `launcher/` + `www/` + `certs/`