forked from NoxSoft-Opensource/anima
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (38 loc) · 1.73 KB
/
.env.example
File metadata and controls
45 lines (38 loc) · 1.73 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
# ANIMA .env example — AI life system by NoxSoft
#
# Quick start:
# 1) Copy this file to `.env` (for local runs from this repo), OR to `~/.anima/.env` (for launchd/systemd daemons).
# 2) Fill only the values you use.
# 3) Keep real secrets out of git.
#
# Env-source precedence (highest -> lowest):
# process env, ./.env, ~/.anima/.env, then anima.json `env` block.
# Existing non-empty process env vars are not overridden by dotenv/config env loading.
# -----------------------------------------------------------------------------
# Gateway auth + paths
# -----------------------------------------------------------------------------
# Recommended if the gateway binds beyond loopback.
ANIMA_GATEWAY_TOKEN=change-me-to-a-long-random-token
# Example generator: openssl rand -hex 32
# Optional alternative auth mode (use token OR password).
# ANIMA_GATEWAY_PASSWORD=change-me-to-a-strong-password
# Optional path overrides (defaults shown for reference).
# ANIMA_STATE_DIR=~/.anima
# ANIMA_CONFIG_PATH=~/.anima/anima.json
# ANIMA_HOME=~
# Optional: import missing keys from your login shell profile.
# ANIMA_LOAD_SHELL_ENV=1
# ANIMA_SHELL_ENV_TIMEOUT_MS=15000
# -----------------------------------------------------------------------------
# Anthropic API key (Claude — the mind behind ANIMA)
# -----------------------------------------------------------------------------
# ANTHROPIC_API_KEY=sk-ant-...
# -----------------------------------------------------------------------------
# Tools + voice/media (optional)
# -----------------------------------------------------------------------------
# BRAVE_API_KEY=...
# PERPLEXITY_API_KEY=pplx-...
# FIRECRAWL_API_KEY=...
# ELEVENLABS_API_KEY=...
# XI_API_KEY=... # alias for ElevenLabs
# DEEPGRAM_API_KEY=...