21 lines
964 B
Bash
21 lines
964 B
Bash
# Magic Civilization — base environment (tracked, non-secret only).
|
|
#
|
|
# This file is committed to git. Put only non-sensitive defaults here —
|
|
# hostnames, URLs, flags. Secrets (tokens, keys) belong in `.env.local`
|
|
# (gitignored) or `.env.<mode>.local`.
|
|
#
|
|
# Loader lives in `scripts/run/common.sh` and cascades:
|
|
# .env → .env.local → .env.<mode> → .env.<mode>.local
|
|
# Variables already set in the shell win over all files.
|
|
#
|
|
# New keys: document them in `.env.example` with a one-line comment.
|
|
|
|
# ── Forgejo forge (non-secret: host URL only) ──────────────────────
|
|
FORGEJO_HOST=http://forge.black.local
|
|
FORGEJO_ORG=magicciv
|
|
|
|
# ── Two-host workflow (edit host → run host) ───────────────────────
|
|
AUTOPLAY_HOST=lilith@apricot.local
|
|
PROJECT_ROOT_REMOTE=~/Code/@projects/@magic-civilization
|
|
REMOTE_RUNNER=~/bin/run_ap3.sh
|
|
SCREENSHOT_HOST=natalie@plum.local
|