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