Skip to content
Merged
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
21 changes: 21 additions & 0 deletions .env-template
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,24 @@ WORKSPACE_NAME=${UPSTREAM_ORG}-workspace

# Maximum number of repos to auto-detect if MONITOR_REPOS is not set
MAX_MONITOR_REPOS=10

# Discord Integration
# Your Discord bot token or user token for exporting messages from Discord channels.
# Required for discord-sync/sync-discord.sh to work.
#
# How to get a token:
# - Bot token: https://discord.com/developers/applications (create a bot, copy token)
# - User token: Use browser DevTools (not recommended for production)
#
# Security notes:
# - Never commit your token to git (this file is in .gitignore)
# - Use bot tokens when possible (more secure than user tokens)
# - Limit token permissions to only what's needed
# - Rotate tokens if compromised
#
# See discord-sync/README.md for more information.
DISCORD_TOKEN=your-discord-token-here

# Optional: Default Discord channel ID
# Can be overridden with --channel flag when running sync-discord.sh
# DISCORD_CHANNEL_ID=123456789012345678
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ embabel-hub/.env
*.env
.env.local
.env.*.local

# Discord exports (may contain sensitive messages)
exports/discord/
Loading