A vfox plugin for managing razd CLI versions.
razd is a command-line interface tool for managing database schemas and migrations.
Install the plugin:
mise plugin install razd https://github.com/razd-cli/vfox-plugin-razdSet global version:
mise use -g razdOr install and use a specific version:
mise use -g razd@0.1.0Install the plugin:
vfox add razdOr install from source:
vfox add --source https://github.com/razd-cli/vfox-plugin-razd.git razd# List available versions
mise ls-remote razd
# Install latest version
mise install razd@latest
# Install specific version
mise install razd@0.1.0
# Use globally
mise use -g razd@0.1.0
# Use in current project
mise use razd@0.1.0# Search available versions
vfox search razd
# Install latest version
vfox install razd@latest
# Install specific version
vfox install razd@0.1.0
# Use in current shell session
vfox use razd@0.1.0
# Set global version
vfox use -g razd@0.1.0
# Set project-specific version
vfox use -p razd@0.1.0razd --versionAfter installing razd CLI with vfox, you can start using it:
razd --helpFor more information, see the razd Documentation.
| Platform | Architecture | Supported |
|---|---|---|
| Windows | x64 | ✅ |
| macOS | Intel (x64) | ✅ |
| macOS | Apple Silicon (arm64) | ✅ |
| Linux | x64 | ✅ |
| Linux | arm64 | ✅ |
Make sure you've run vfox use razd@<version> to activate the version. Check that vfox is properly configured in your shell:
# For bash/zsh
echo 'eval "$(vfox activate bash)"' >> ~/.bashrc # or ~/.zshrc
# For fish
echo 'vfox activate fish | source' >> ~/.config/fish/config.fish
# For PowerShell
Add-Content $PROFILE 'Invoke-Expression "$(vfox activate pwsh)"'This plugin currently supports Windows (x64), macOS (x64/arm64), and Linux (x64/arm64). If you're using a different platform or architecture, razd may not provide pre-built binaries for your system.
This plugin fetches version information and binaries from the official razd GitHub releases.
Apache 2.0