-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
20 lines (18 loc) · 725 Bytes
/
Copy pathenv.example
File metadata and controls
20 lines (18 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Telegram Bot Token - get from @BotFather
BOT_TOKEN=your_bot_token_here
# Admin user IDs who can configure participants
# Supported formats:
# - Single admin: ADMIN_USER_ID=123456789
# - Multiple comma-separated: ADMIN_USER_ID=123456789,987654321,555666777
# - Multiple space-separated: ADMIN_USER_ID=123456789 987654321 555666777
#
# To get your User ID use /myid command in the bot
ADMIN_USER_ID=123456789
# Channel ID for sending assignments
# Supported formats:
# - Numeric ID: ASSIGN_CHANNEL_ID=-1001234567890
# - Username with @: ASSIGN_CHANNEL_ID=@mychannel
# - Username without @: ASSIGN_CHANNEL_ID=mychannel
#
# To get channel ID: forward a message from the channel to @userinfobot
ASSIGN_CHANNEL_ID=@mychannel