unzip DiscOS.zip -d DiscOS
cd DiscOSgit init
git add -A
git commit -m "Initial DiscOS Rust userland"
# then add your GitHub remote
# git remote add origin git@github.com:<your-org>/DiscOS.git
# git push -u origin maincargo test --workspaceStart the EvidenceOS daemon first (in the EvidenceOS repo):
cargo run -p evidenceos-daemon -- --listen 127.0.0.1:50051 --etl-path ./data/etl.logThen run DiscOS:
cargo run -p discos-cli -- --endpoint http://127.0.0.1:50051 health
cargo run -p discos-cli -- --endpoint http://127.0.0.1:50051 experiment0
cargo run -p discos-cli -- --endpoint http://127.0.0.1:50051 experiment2See MIGRATION_REMOVE_PYTHON.md.