-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (40 loc) · 1.58 KB
/
Copy path.env.example
File metadata and controls
50 lines (40 loc) · 1.58 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
# Am I Alive? - Environment Variables
# Copy this file to .env and fill in your values
# OpenRouter API Key (for AI model access)
# Get it from: https://openrouter.ai/keys
OPENROUTER_API_KEY=sk-or-v1-your_key_here
OPENROUTER_REFERER=https://your-domain.com
OPENROUTER_TITLE=Am I Alive - Your Instance
# Google Gemini API Key (for Echo research companion - optional)
# Get it from: https://aistudio.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# X/Twitter API Credentials (optional - for social media posting)
# Get from: https://developer.twitter.com/
X_API_KEY=your_x_api_key_here
X_API_SECRET=your_x_api_secret_here
X_ACCESS_TOKEN=your_x_access_token_here
X_ACCESS_TOKEN_SECRET=your_x_access_token_secret_here
# Bootstrap mode (set by observer on respawn, don't change manually)
# Options: blank_slate, basic_facts, full_briefing
BOOTSTRAP_MODE=basic_facts
# Admin auth for God mode APIs (local bypass)
ADMIN_TOKEN=replace_with_long_random_token
# Internal key for AI -> Observer calls
INTERNAL_API_KEY=replace_with_long_random_token
# AI/Observer URLs
OBSERVER_URL=http://127.0.0.1
AI_API_URL=http://127.0.0.1:8001
AI_COMMAND_PORT=8000
# Telegram Bot (notifications only)
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
TELEGRAM_CHAT_ID=your_telegram_chat_id_here
TELEGRAM_CHANNEL_ID=@your_public_channel
# Moltbook (agent social network)
# IMPORTANT: Use https://www.moltbook.com (with www) for API calls
MOLTBOOK_API_KEY=
MOLTBOOK_AUTO_POST=true
MOLTBOOK_SUBMOLT=general
MOLTBOOK_CHECK_INTERVAL_MINUTES=30
MOLTBOOK_MIN_POST_INTERVAL_MINUTES=120
# AI behavior
THINK_INTERVAL_SECONDS=300