-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.env.example
45 lines (36 loc) · 917 Bytes
/
.env.example
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
# Project
##################
# PROJECT_PHASE values:
# - development
# - stabilisation
# - soft_freeze
# - code_freeze
# - feature_freeze
PROJECT_PHASE=development
# Slack
##################
# Slack: Auth token of the bot
SLACK_BOT_AUTH_TOKEN="<SET AUTH TOKEN>"
# Slack: ID of the bot
SLACK_BOT_ID="<SET BOT ID>"
# ID of the channel to report new channels (#typo3-cms-new-channel)
SLACK_CHANNEL_NEW_CHANNELS="<SET CHANNEL ID>"
# User blacklist, comma list of user ids
SLACK_USER_BLACKLIST=
# Webhook
##################
WEBHOOK_T3O_REGISTRAION_SECURITY_TOKEN="<SET SECURITY TOKEN>"
# Gerrit
##################
GERRIT_TOKEN="<SET GERRIT SECURITY TOKEN>"
# Database
##################
DB_HOST=127.0.0.1
DB_USER=root
DB_PASS=
DB_DBNAME=t3bot
# Logger
##################
LOG_FILE="/var/log/botty.log"
# DEBUG=100, INFO=200, NOTICE=250, WARNING=300, ERROR=400, CRITICAL=500, ALERT=550, EMERGENCY=600
LOG_LEVEL=400