-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Edgar Cano edited this page Jun 1, 2026
·
1 revision
- Rust toolchain (edition 2021 or later)
-
cargoavailable in your PATH
git clone https://github.com/OdinoCano/3va.git
cd 3va
cargo build --releaseThe binary will be at target/release/3va.
Temporary (current session only):
export PATH="$PWD/target/release:$PATH"Permanent:
sudo cp target/release/3va /usr/local/bin/3va --version
3va doctor3va doctor runs a system health check to verify the runtime environment is correctly set up.
# Run a TypeScript file (no permissions granted)
3va run app.ts
# Run with network and read access
3va run app.ts --allow-net=api.example.com --allow-read=/dataSee CLI Reference for all available flags.