| title |
CLI Reference |
| description |
Command-line interface reference for VisionClaw development and deployment |
| category |
reference |
| difficulty-level |
intermediate |
| tags |
|
| updated-date |
2025-01-29 |
Command-line interface reference for VisionClaw development and deployment.
# Development build
cargo build
# Release build
cargo build --release
# Run with default features
cargo run
# Run with specific features
cargo run --features gpu
# Run tests
cargo test
# Start services
docker-compose up -d
# View logs
docker-compose logs -f visionclaw
# Stop services
docker-compose down
# Rebuild container
docker-compose build --no-cache
| Option |
Short |
Description |
--config |
-c |
Configuration file path |
--verbose |
-v |
Increase verbosity |
--quiet |
-q |
Suppress output |
--help |
-h |
Show help |
| Variable |
Description |
Example |
RUST_LOG |
Logging level |
debug, info, warn, error |
RUST_BACKTRACE |
Enable backtraces |
1 or full |