-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 1.19 KB
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (40 loc) · 1.19 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
services:
claudify:
build: .
restart: unless-stopped
environment:
- DISCORD_TOKEN=your_discord_bot_token_here
- REQUIRED_ROLE_ID=your_discord_role_id_here
- AUTH_ADMIN_USER_IDS=
- CLAUDE_AUTH_LOGIN_TIMEOUT_MS=300000
- MESSAGES_DIR=/app/messages
- BOT_MODEL=claude-haiku-4-5
- BOT_EFFORT=
- CLAUDE_RESPONSE_MODEL=claude-sonnet-5
- CLAUDE_RESPONSE_EFFORT=high
- CLAUDE_RESPONSE_EFFORT_MODE=fixed
- CLAUDE_PROFILE_MODEL=
- CLAUDE_PROFILE_EFFORT=
- CLAUDE_SERVER_MEMORY_MODEL=
- CLAUDE_SERVER_MEMORY_EFFORT=
- CLAUDE_SUMMARY_MODEL=
- CLAUDE_SUMMARY_EFFORT=
- MEMORY_UPDATE_DEBOUNCE_MS=120000
- MEMORY_UPDATE_MAX_DELAY_MS=600000
- MEMORY_UPDATE_BATCH_MAX_CHARS=20000
- REPLY_CHAIN_DEPTH=5
- REPLY_LIVE_CONTEXT_LIMIT=15
- HISTORY_FTS_MAX_RESULTS=12
- HISTORY_FTS_MAX_CHARS=12000
- SUPPRESS_MENTIONS=false
- MCP_PORT=3100
- MCP_READ_MESSAGES_MAX_CHARS=120000
- MCP_HISTORY_MAX_CHARS=120000
- MORPHEUS_MCP_URL=
- MORPHEUS_MCP_API_KEY=
volumes:
- messages:/app/messages
- claude-home:/root
volumes:
messages:
claude-home: