|
1 | | -DISCORD_TOKEN="" # Your bot token |
2 | | -CLIENT_ID="" # Your bot's application ID |
| 1 | +# Local Environment Variables (Secrets) |
| 2 | +# Copy this file to .env and fill in your actual values |
| 3 | +# .env is gitignored and should NEVER be committed |
3 | 4 |
|
4 | | -SERVER_ID= # Discord Server ID where the bot will operate |
5 | | -MODERATORS_ROLE_IDS= # Comma separated list of role IDs that are Moderators(Mods, Admins, etc) |
| 5 | +# Discord Bot Token & Application ID (REQUIRED) |
| 6 | +# Get this from: https://discord.com/developers/applications |
| 7 | +DISCORD_TOKEN=your-bot-token-here |
| 8 | +CLIENT_ID=your-bot-application-id |
| 9 | + |
| 10 | +# Override any public config values for local testing |
| 11 | + |
| 12 | +# Discord Server ID (your dev server) |
| 13 | +SERVER_ID=your-server-id |
| 14 | + |
| 15 | +# Channel IDs (from your dev server) |
| 16 | +GUIDES_CHANNEL_ID=your-guide-channel-id |
| 17 | +REPEL_LOG_CHANNEL_ID=your-repel-log-channel-id |
| 18 | +ONBOARDING_CHANNEL_ID=onboarding-channel-id |
| 19 | + |
| 20 | +# Role IDs (from your dev server) |
| 21 | +REPEL_ROLE_ID=your-repel-role-id |
| 22 | +MODERATORS_ROLE_IDS=your-moderator-role-id |
| 23 | +ONBOARDING_ROLE_ID=onboarding-role-id |
| 24 | +# Other |
| 25 | +GUIDES_TRACKER_PATH=guides-tracker.json |
6 | 26 |
|
7 | | -REPEL_LOG_CHANNEL_ID= # Channel ID where the bot will log repel actions |
8 | | -REPEL_ROLE_ID= # Role ID assigned to users who can use the repel command |
9 | | -GUIDES_CHANNEL_ID="" # The ID of the channel where guides will be posted |
10 | 27 |
|
11 | | -ONBOARDING_CHANNEL_ID= # Channel ID where onboarding messages will be sent |
12 | | -ONBOARDING_ROLE_ID= # Role ID assigned to new members upon onboarding |
|
0 commit comments