Browse docs
--- title: "Build from Source" description: "Build and run Aurora directly from source." icon: "code" --- ## Build from Source ### Prerequisites - Go 1.26+ - Git ### Clone and Build ``bash git clone https://github.com/aurorallm/aurora.git cd Aurora # Build the binary go build -o aurora ./apps/aurora # Run ./aurora ` ### Development Build `bash # Build with race detection for development go build -race -o aurora ./apps/aurora ` ### Configure Set environment variables or create a .env file: `bash echo "OPENAI_API_KEY=sk-..." >> .env ./aurora ` ### Testing `bash make test # Unit tests make test-race # With race detection make test-e2e # End-to-end tests `` See Contributing for the full development guide.