Installation & Getting Started.
Choose your preferred method to deploy Aurora Gateway.
1. Quick Start with NPX
npx -y iauroraThis installs or locates the native OSS gateway binary, creates config, and starts Aurora locally.
2. Docker
docker run -d --name aurora -p 8080:8080 -e AURORA_MASTER_KEY='your-secure-key' -e GROQ_API_KEY='gsk_...' aurorahq/aurora3. Running from Source
- Prerequisites: Go 1.26.2+
- Create a
.envfile:cp .env.template .env - Add your API keys to
.env - Start the server:
make run
4. Docker Compose
Infrastructure only (Redis, Postgres, Mongo):
docker compose up -dFull Stack:
docker compose --profile app up -d