-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env-SAMPLE
62 lines (50 loc) · 1.34 KB
/
.env-SAMPLE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Our API token that we got from @BotFather
TOKEN="FIXME"
#
# List of Group IDs, seperated by spaces.
#
GROUP_IDS="FIXME FIXME2"
#
# List of group names, seperated by spaces.
#
# Note that name matching is done on a substring basis, and this
# really isn't recommended!
#
# Also note that you can't have a space in what you want to match, there's no easy way
# to escape that, unfortunately.
#
GROUP_NAMES="FIXME FIXME2"
#
# How many messages do we want to rate-limit ourselves to in a given period?
#
ACTIONS=10
#
# How long is a given period, in seconds?
#
# These defaults will let the bot post 10 messages per 10 minutes,
# or an average of once/minute.
#
PERIOD=600
#
# Post when triggered by every nth message, on a per-group basis.
# Disabled by default, as enabling it can also make the group spammy.
#
#POST_EVERY=100
#
# File that contains our quotes and images, one per line.
#
POSTS_FILE="./posts.txt"
#
# Set to 1 to let the bot reply when it sees profanity.
# This can be annoying, so it's off by default.
#
PROFANITY_REPLY=0
#
# Used to set the proxy if we're using mitmproxy.
#
# DO NOT USE LOCALHOST because that will just talk to the Docker container.
# Instead, you'll need the IP address of the host container.
# It likely starts with 192.168.* or 10.*.
#
HTTP_PROXY="http://YOUR_HOST_IP:8080/"
HTTPS_PROXY="http://YOUR_HOST_IP:8080/"