-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.env
42 lines (28 loc) · 1.13 KB
/
sample.env
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
# use a `.env` file with these environment variables.
# token of the bot itself
TOKEN=<BOT_TOKEN>
# (optional) custom proxy to run the bot behind it
PROXY=<OPTIONAL_PROXY>
############################
### HAMVADE SERVICE ENVS ###
############################
# (default: false) indicates whether hamvade service is going to be active
HAMVADE_SERVICE=<BOOL:true:false>
# id of the person who wants to receieve codes
ADMIN_USER_ID=<ADMIN_USER_ID>
# id of the channel in which the codes would be sent
CHANNEL_ID=<CHANNEL_USER_ID>
# NOTE: logically at least one of above IDs must be set, otherwise codes will be sent nowhere!
#########################
### PLAN SERVICE ENVS ###
#########################
# (default: false) indicates whether the plan service is going to be active
PLAN_SERVICE=<BOOL:true:false>
# the url of the db, as in format: mongodb://<dbuser>:<dbpassword>@<address>:<port>
DB_URL=<DB_URL_COMPETELY>
# name of the database to be used
DB=<DATABASE_NAME>
# the channel id that result of plan service should be published to
# there can exist many ids, with _1, _2, ... indexes!
PLAN_GROUP_ID_1=<GROUP_ID>
PLAN_GROUP_ID_2=<GROUP_ID>