-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
39 lines (39 loc) · 1.02 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
{
"name": "GIGA Userbot",
"description": "A powerful telegram userbot written in Go",
"logo": "https://avatars.githubusercontent.com/u/110288429?s=200&v=4",
"keywords": [
"telegram",
"golang",
"modular",
"productivity"
],
"repository": "https://github.com/GigaUserbot/GIGA",
"success_url": "https://t.me/GigaUpdates",
"stack": "heroku-22",
"env": {
"APP_ID": {
"description": "Get this value from my.telegram.org!",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org!",
"value": ""
},
"REDIS_URI": {
"description": "Get this value from redislabs.com",
"value": ""
},
"REDIS_PASS": {
"description": "Get this value from redislabs.com",
"value": ""
},
"SESSION_STRING": {
"description": "Get this value by running https://github.com/GigaUserbot/GIGA/blob/dev/session_maker.sh",
"value": ""
}
},
"buildpack": [{
"url": "heroku/go"
}]
}