-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
TamTunnel edited this page Jan 4, 2026
·
1 revision
- Rust 1.83+ (
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh)
# Clone the repository
git clone https://github.com/TamTunnel/SpaceComms.git
cd SpaceComms
# Build the core service
cd spacecomms-core
cargo build --release
# Start a node with example config
cargo run -- start --config ../examples/config.yamlDemonstrates CDM propagation between two nodes.
cd examples
./demo.shLaunches a visual dashboard with real-time network visualization.
cd examples
./demo-gui.sh
# Open http://localhost:3000Demonstrates secure peer communication with mutual TLS.
cd dev-certs && ./generate-certs.sh
cd ../examples
./demo-secure.shFor more details, see the Demo Guide.