-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathenv.example
More file actions
47 lines (39 loc) · 1.71 KB
/
env.example
File metadata and controls
47 lines (39 loc) · 1.71 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
# =============================================================================
# Bluesky Agent Configuration
# =============================================================================
# Copy this file to .env and fill in your credentials
# Generate an app password at: https://bsky.app/settings/app-passwords
# Required - Bluesky Credentials
BLUESKY_HANDLE=your-handle.bsky.social
BLUESKY_PASSWORD=your-app-password-here
# Optional - Bluesky Settings
# BLUESKY_SERVICE=https://bsky.social
# BLUESKY_DRY_RUN=false
# BLUESKY_POLL_INTERVAL=60
# BLUESKY_ENABLE_POSTING=true
# BLUESKY_ENABLE_DMS=true
# BLUESKY_POST_INTERVAL_MIN=1800
# BLUESKY_POST_INTERVAL_MAX=3600
# BLUESKY_ENABLE_ACTION_PROCESSING=true
# BLUESKY_ACTION_INTERVAL=120
# BLUESKY_POST_IMMEDIATELY=false
# BLUESKY_MAX_ACTIONS_PROCESSING=5
# =============================================================================
# Model Provider (choose one)
# =============================================================================
# OpenAI
OPENAI_API_KEY=sk-your-openai-key
# Or Anthropic
# ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
# =============================================================================
# Database Configuration
# =============================================================================
# For production, use PostgreSQL:
# POSTGRES_URL=postgresql://user:password@localhost:5432/elizaos
# For development, PGLite is used by default (no config needed)
# PGLITE_DATA_DIR=./data/pglite
# =============================================================================
# Agent Configuration
# =============================================================================
# LOG_LEVEL=info
# Autonomy is controlled via runtime.enableAutonomy in code