iaurora 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +29 -0
- package/package.json +2 -1
package/.env.example
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Aurora Gateway — Environment Variables
|
|
2
|
+
# Copy or rename this file to .env and fill in your values.
|
|
3
|
+
# The .env file must be in the same directory as your config YAML.
|
|
4
|
+
|
|
5
|
+
# REQUIRED: Gateway security key (set before exposing outside localhost)
|
|
6
|
+
AURORA_MASTER_KEY=replace-with-secure-key
|
|
7
|
+
|
|
8
|
+
# REQUIRED: At least one provider API key (uncomment one or more)
|
|
9
|
+
# GROQ_API_KEY=gsk_...
|
|
10
|
+
# OPENAI_API_KEY=sk-...
|
|
11
|
+
# ANTHROPIC_API_KEY=sk-ant-...
|
|
12
|
+
# GEMINI_API_KEY=...
|
|
13
|
+
# DEEPSEEK_API_KEY=...
|
|
14
|
+
# OPENROUTER_API_KEY=sk-or-...
|
|
15
|
+
# XAI_API_KEY=...
|
|
16
|
+
# AZURE_API_KEY=...
|
|
17
|
+
# AZURE_BASE_URL=https://your-resource.openai.azure.com/...
|
|
18
|
+
# OLLAMA_BASE_URL=http://localhost:11434/v1
|
|
19
|
+
# VLLM_BASE_URL=http://localhost:8000/v1
|
|
20
|
+
|
|
21
|
+
# OPTIONAL: Server settings
|
|
22
|
+
# PORT=8080
|
|
23
|
+
# BASE_PATH=/
|
|
24
|
+
# STORAGE_TYPE=sqlite
|
|
25
|
+
# METRICS_ENABLED=false
|
|
26
|
+
|
|
27
|
+
# OPTIONAL: Redis (for response cache)
|
|
28
|
+
# REDIS_URL=redis://localhost:6379
|
|
29
|
+
# RESPONSE_CACHE_SIMPLE_ENABLED=true
|