Documentation
Installation
Oxmgr supports Linux, macOS, and Windows. Pick the install method that fits your workflow.
npm / yarn
npm install -g oxmgr
# or
yarn global add oxmgrWorks on all platforms where Node.js is installed. Fastest way to get started.
Homebrew macOS / Linux
brew tap empellio/homebrew-tap
brew install oxmgrChocolatey Windows
choco install oxmgr -yScoop Windows
scoop bucket add oxmgr https://github.com/empellio/scoop-bucket
scoop install oxmgr/oxmgrAUR Arch Linux
yay -S oxmgr-binAPT — signed repository Debian / Ubuntu (recommended for servers)
sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://vladimir-urik.github.io/OxMgr/apt/keyrings/oxmgr-archive-keyring.gpg \
| sudo tee /etc/apt/keyrings/oxmgr-archive-keyring.gpg >/dev/null
echo "deb [signed-by=/etc/apt/keyrings/oxmgr-archive-keyring.gpg] https://vladimir-urik.github.io/OxMgr/apt stable main" \
| sudo tee /etc/apt/sources.list.d/oxmgr.list
sudo apt update && sudo apt install oxmgrUsing the signed APT repository means you get automatic upgrades with apt upgrade.
Build from source Requires Rust toolchain
git clone https://github.com/Vladimir-Urik/OxMgr.git
cd OxMgr
cargo build --release
./target/release/oxmgr --helpInstall the Rust toolchain with rustup.rs if you don't have it.
Verify install
oxmgr --help
oxmgr listNext steps
- → Quick Start — write your first oxfile.toml and launch processes
- → System Services — install Oxmgr as a system service for boot persistence
Still have questions?
Open an issue or browse the source on GitHub.