| 1234567891011121314151617 |
- # === Required ===
- # Your target guild (server) ID; use the guild where you run role selection
- GUILD_ID=123456789012345678
- # === Optional (recommended) ===
- # Channel to auto-post the role selection UI on startup; if not set, use /rolepanel command instead
- ROLE_PANEL_CHANNEL_ID=
- # Default inactivity timeout in days for users: if no events from a user within this many days,
- # all SELECTABLE roles are removed from them. Can be changed at runtime by slash command.
- INACTIVITY_DAYS_DEFAULT=14
- # Path for the SQLite DB file (inside container).
- DATABASE_PATH=/app/data/bot.db
- # Log level: DEBUG, INFO, WARNING, ERROR
- LOG_LEVEL=INFO
|