Documentation
Quick Start
- Install the Outrig server:
- MacOS:
brew install outrigdev/outrig/outrig
- Linux:
curl -sf https://outrig.run/install.sh | sh
- MacOS:
- Start the Outrig server from the CLI:
outrig server
- Add the Outrig SDK to your Go application:
// Step 1: Import the Outrig package import "github.com/outrigdev/outrig" func main() { // Step 2: Initialize Outrig (set your application name) outrig.Init("app-name", nil) // Step 3: Optionally signal graceful shutdown defer outrig.AppDone() // Your application code here... }
- Navigate to http://localhost:5005/ in your web browser to access the Outrig dashboard.
For more detailed setup instructions, see the Getting Started page.