Files
Vantz Stockwell 651a35d4be
All checks were successful
CI / backend-types (push) Successful in 10s
CI / frontend-build (push) Successful in 15s
CI / agent-tests (push) Successful in 39s
CI / integration (push) Successful in 22s
docs(reference): import Dune: Awakening server-manager references
Phase 2 references for the host-agent Dune adapter, moved out of volatile /tmp
into docs/reference-repos/ (per Commander). Three upstream projects, .git +
node_modules + compiled binaries stripped (16MB source). Nested AI-instruction
files (.claude/, CLAUDE.md) removed so they don't pollute Corrosion sessions.

- icehunter/    dune-admin (Go+React) — 4 control planes; SETUP_DOCKER.md is the
                closest analog to our agent's Dune docker control plane (compose
                lifecycle, docker logs, RabbitMQ-via-exec, dune Postgres schema)
- adainrivers/  Rust/Tauri desktop — SSH+k8s BattleGroup control, maintenance
                daemon, in-game admin console (Rust idiom reference)
- the4rchangel/ Node web UI replacing battlegroup.bat — matches the Commander's
                Hyper-V self-host path + game-config schema

See docs/reference-repos/README.md for the full index + how we use each.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-11 21:08:05 -04:00

24 lines
810 B
Plaintext

# dune-admin configuration
# Copy to .env and run: go run . -setup (or: ./dune-admin -setup)
# The setup wizard fills this in automatically.
# Connection mode: 'direct' (no SSH, connect to DB directly) or 'ssh' (tunnel through VM)
CONNECTION_MODE=direct
# ── Direct mode settings ──────────────────────────────────────────────────────
# Used when CONNECTION_MODE=direct — connect to PostgreSQL directly.
DB_HOST=127.0.0.1
DB_PORT=15432
DB_USER=dune
DB_PASS=dune
DB_NAME=dune
DB_SCHEMA=dune
# ── SSH mode settings (optional — only needed for CONNECTION_MODE=ssh) ────────
# SSH_HOST=192.168.0.72:22
# SSH_USER=dune
# SSH_KEY=./sshKey
SCRIP_CURRENCY=1
LISTEN_ADDR=:9090