OSS / Getting Started
Editions
What is available in Aurora OSS and Aurora Enterprise, and how to start with the right edition.
Browse docs
Aurora ships as two launch artifacts with the same OpenAI- and Anthropic-compatible gateway core and different capability gates.
OSS features
These features are available without an Enterprise capability:
For the full Enterprise capabilities list with configuration details, see Enterprise Overview.
Run OSS
Fastest npm-based startup:
text
npx -y iaurora
Use the OSS example profile as a starting point:
text
$env:AURORA_CONFIG_PATH = "configs/editions/oss.example.yaml" $env:OPENAI_API_KEY = "<your-openai-api-key>" .\bin\aurora-oss.exe
Minimal Docker-style OSS configuration:
text
docker run --rm -p 8080:8080 \
-e AURORA_MASTER_KEY="sk-aurora-..." \
-e OPENAI_API_KEY="$OPENAI_API_KEY" \
-e LOGGING_ENABLED=true \
-e USAGE_ENABLED=true \
aurorahq/aurora
Then call the gateway:
text
curl http://your-aurora-host/v1/chat/completions \
-H "Authorization: Bearer sk-aurora-..." \
-H "Content-Type: application/json" \
-d '{
"model": "<model id returned by /v1/models>",
"messages": [{"role": "user", "content": "Hello from OSS"}]
}'
For Enterprise access, deployment, and capability checks, see Enterprise Overview.