Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Claude is sandboxed — it can only search the web and read/write its own messag

2. Set your environment variables in `docker-compose.yml`:
- `DISCORD_TOKEN` — your bot token
- `REQUIRED_ROLE_ID` — Discord role ID that can use the bot (leave as placeholder to allow everyone)
- `REQUIRED_ROLE_ID` — Discord role ID that can use the bot (leave empty to allow everyone)
- `AUTH_ADMIN_USER_IDS` — comma-separated Discord user IDs allowed to manage Claude and Codex authentication (leave empty to disable)
- `CLAUDE_AUTH_LOGIN_TIMEOUT_MS` — optional Discord login-session timeout (default: `300000`)
- `MESSAGES_DIR` — where message history is stored (default: `/app/messages`)
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
restart: unless-stopped
environment:
- DISCORD_TOKEN=your_discord_bot_token_here
- REQUIRED_ROLE_ID=your_discord_role_id_here
- REQUIRED_ROLE_ID=
- AUTH_ADMIN_USER_IDS=
- CLAUDE_AUTH_LOGIN_TIMEOUT_MS=300000
- MESSAGES_DIR=/app/messages
Expand Down