-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy path.env.example
More file actions
78 lines (56 loc) · 2.28 KB
/
.env.example
File metadata and controls
78 lines (56 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Milady runtime environment example
# Copy to .env or ~/.eliza/.env as needed.
# ----------------------------------------------------------------------------
# Model provider API keys (at least one required)
# ----------------------------------------------------------------------------
# Anthropic (recommended — Claude models)
ANTHROPIC_API_KEY=
# OpenAI (GPT-4o, o1, Codex)
OPENAI_API_KEY=
# Google Gemini
GOOGLE_GENERATIVE_AI_API_KEY=
# Gemini aliases (optional). Runtime maps these to GOOGLE_GENERATIVE_AI_API_KEY
# if canonical key is unset.
GOOGLE_API_KEY=
GEMINI_API_KEY=
# Groq (fast inference)
GROQ_API_KEY=
# OpenRouter (100+ models, one API)
OPENROUTER_API_KEY=
# xAI (Grok)
XAI_API_KEY=
# DeepSeek
DEEPSEEK_API_KEY=
# ----------------------------------------------------------------------------
# Runtime configuration
# ----------------------------------------------------------------------------
# Log level: debug | info | warn | error
LOG_LEVEL=info
# Server ports (defaults shown)
# MILADY_PORT=2138 # Dashboard UI
# MILADY_API_PORT=31337 # API + WebSocket (dev only; shares MILADY_PORT in prod)
# MILADY_HOME_PORT=2142 # Home dashboard
# MILADY_GATEWAY_PORT=18789 # Gateway
# Bind address (default: 127.0.0.1 — set to 0.0.0.0 for network access)
# MILADY_API_BIND=127.0.0.1
# API auth token (REQUIRED when MILADY_API_BIND is not loopback)
# MILADY_API_TOKEN=
# CORS origins (comma-separated, only needed for remote/cloud deployments)
# MILADY_ALLOWED_ORIGINS=https://app.milady.ai
# Config file override (default: ~/.eliza/eliza.json)
# ELIZA_CONFIG_PATH=
# ELIZA_STATE_DIR=
# ----------------------------------------------------------------------------
# Development flags
# ----------------------------------------------------------------------------
# Skip local Eliza workspace linking (use npm-published @elizaos/* packages)
# ELIZA_SKIP_LOCAL_ELIZA=1
# Force rebuild of Eliza packages on every build
# ELIZA_FORCE_BUILD=1
# Dev server log level override
# ELIZA_DEV_LOG_LEVEL=debug
# ----------------------------------------------------------------------------
# GitHub / coding-agent credentials
# ----------------------------------------------------------------------------
# GitHub PAT for repo access, PR creation, and gh operations in agents.
GITHUB_TOKEN=