Installation
DevProc can be installed via Homebrew, from source, or by downloading a pre-built binary.
Homebrew (Recommended)
The easiest way to install DevProc on macOS or Linux:
brew tap captjt/devproc https://github.com/captjt/devprocbrew install devprocThis also installs shell completions automatically.
Updating
brew upgrade devprocFrom Source
If you have Bun installed, you can run DevProc directly from source:
# Clone the repositorygit clone https://github.com/captjt/devproc.gitcd devproc
# Install dependenciesbun install
# Run DevProcbun run startOr create a symlink for global access:
# Make the entry point executablechmod +x src/index.tsx
# Create a symlink (adjust path as needed)ln -s "$(pwd)/src/index.tsx" /usr/local/bin/devprocDownload Binary
Download the latest pre-built binary from GitHub Releases.
Available platforms:
- macOS (Apple Silicon):
devproc-darwin-arm64 - macOS (Intel):
devproc-darwin-x64 - Linux (x64):
devproc-linux-x64 - Linux (ARM64):
devproc-linux-arm64
# Example for macOS Apple Siliconcurl -L https://github.com/captjt/devproc/releases/latest/download/devproc-v0.5.0-darwin-arm64.tar.gz | tar xzchmod +x devprocsudo mv devproc /usr/local/bin/Shell Completions
If you installed via Homebrew, completions are set up automatically. For manual installation:
Bash
Add to your ~/.bashrc:
eval "$(devproc completions bash)"Or save to a file:
devproc completions bash > /usr/local/etc/bash_completion.d/devprocZsh
Add to your ~/.zshrc:
eval "$(devproc completions zsh)"Or save to a file (ensure ~/.zsh/completions is in your fpath):
devproc completions zsh > ~/.zsh/completions/_devprocFish
Add to your ~/.config/fish/config.fish:
devproc completions fish | sourceOr save to a file:
devproc completions fish > ~/.config/fish/completions/devproc.fishRequirements
- Bun >= 1.0 (only for running from source)
- macOS or Linux (Windows not currently supported)
Verifying Installation
devproc --versionYou should see output like:
DevProc v0.5.0Next Steps
- Quick Start - Create your first config and run DevProc