Quick Start

  1. Install the Outrig server:
    • MacOS: brew install outrigdev/outrig/outrig
    • Linux: curl -sf https://outrig.run/install.sh | sh
  2. Start the Outrig server from the CLI: outrig server
  3. 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... }
  1. Navigate to http://localhost:5005/ in your web browser to access the Outrig dashboard.

For more detailed setup instructions, see the Getting Started page.