-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
51 lines (51 loc) · 1.15 KB
/
app.json
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
{
"name": "Gobot",
"description": "Multi-purpose Telegram bot",
"env": {
"ADMIN_ID": {
"description": "Telegram User ID of the admin user",
"value": "1337",
"required": false
},
"BOT_TOKEN": {
"description": "Telegram Bot Token",
"value": "12345:abcdefg",
"required": true
},
"IGNORE_SQL_MIGRATION": {
"description": "Remove this if you want to use SQL migration feature",
"value": "true",
"required": false
},
"MYSQL_HOST": {
"value": "127.0.0.1",
"required": true
},
"MYSQL_PORT": {
"value": "3306",
"required": true
},
"MYSQL_USER": {
"value": "myuser",
"required": true
},
"MYSQL_PASSWORD": {
"value": "mypass",
"required": true
},
"MYSQL_DB": {
"value": "mydb",
"required": true
},
"TZ": {
"description": "Do yourself a favor and set your timezone here",
"value": "Europe/Berlin",
"required": false
},
"WEBHOOK_PUBLIC_URL": {
"description": "URL to your heroku instance",
"value": "https://some-app.herokuapp.com/",
"required": false
}
}
}