Install ServFlow Pro on your system using your preferred method
ServFlow Pro is a visual backend engine for building and running APIs. This guide covers all available installation methods to get ServFlow Pro running on your system.
Looking to set up a local development environment with tracing and debugging? See the Local Environment Setup guide.
# Using Homebrew (macOS/Linux)brew install Servflow/servflow/servflow-proservflow-pro start --config config.toml --dashboard# Or using Dockerdocker run -p 8080:8080 -p 3000:3000 servflow/servflow-pro
Download pre-built binaries from the Releases page.Available platforms:
Linux (x86_64, arm64)
macOS (x86_64, arm64)
# Download and extract (example for Linux x86_64)tar -xzf servflow-pro_Linux_x86_64.tar.gz# Make executablechmod +x servflow-pro# Run./servflow-pro start --config config.toml --dashboard
This starts only the API server. Use this mode for:
Production deployments
CI/CD pipelines
Containerized environments
GitOps workflows
Both modes read API configurations from the same config_folder. You can develop with the dashboard, then deploy the same YAML files in headless mode. See Running Modes for a detailed comparison.