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>
27 lines
841 B
TOML
27 lines
841 B
TOML
[package]
|
|
name = "dune-dedicated-server-manager-app"
|
|
version = "0.2.0"
|
|
description = "Desktop shell for Dune Dedicated Server Manager"
|
|
authors = ["Dune Dedicated Server Manager"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "dune_dedicated_server_manager_app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
dune-manager-core = { path = "../../crates/dune-manager-core" }
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-shell = "2"
|
|
base64 = "0.22"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json"] }
|