-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.json
57 lines (56 loc) · 1.27 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
52
53
54
55
56
57
{
"name": "Chat-Gpt",
"description": "A Telegram open-ai Chatgpt bot.",
"logo": "https://te.legra.ph/file/9fa2101b77407dbec7d31.jpg",
"keywords": [
"telegram", "chatgpt",
"python",
"pyrogram",
"Noob-Mukesh"
],
"stack": "heroku-20",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "15"
}
}
],
"env": {
"BOT_TOKEN": { "description": "telegram bot token here",
"required": true
},
"OWNER_ID": {
"description": "Owner id OF TELEGRAM ",
"required": true
},
"SUPPORT_GRP": {
"description": "Your Support Group without @",
"required": true
},
"STKR": {
"description": "Sticker for start",
"required": true
},
"START_IMG": {
"description": "Start Image For Bot.",
"required": true
},
"UPDATE_CHNL": {
"description": "Your Updates Channel without @",
"required": true
},
"API_ID": { "description": "telegram api id here",
"required": true
},
"API_HASH": {
"description": "telegram api hash here",
"required": true
},
"MONGO_DB_URI":{
"description":"enter mongo url here",
"required":true
}},
"repository": "https://github.com/noob-mukesh/Chatgpt-bot"
}