mvm-cli 0.11.0

CLI commands, UI, and bootstrap for mvm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{{ marker_start }}
# Load completions for the current shell (bash or zsh)
if command -v mvmctl >/dev/null 2>&1; then
    _mvm_shell="$(basename "${SHELL:-bash}")"
    eval "$(mvmctl completions "$_mvm_shell" 2>/dev/null)"
    unset _mvm_shell
fi

KV_ROOT="{{ kv_root }}"
alias mvmctl="cargo run --manifest-path $KV_ROOT/mvm/Cargo.toml --"
alias mvmd="cargo run --features tui --manifest-path $KV_ROOT/mvmd/Cargo.toml --"
{{ marker_end }}