-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
88 lines (88 loc) · 2.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "PYTEL-Premium",
"description": "KASTA ID ( PYTEL )",
"keywords": ["telegram", "pyrogram", "multiclient", "chatgpt"],
"repository": "https://github.com/kastaid/pytel",
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql",
"as": "DATABASE_URL",
"options": {
"version": "15"
}
}
],
"env": {
"API_ID": {
"description": "from my.telegram.org/apps ( for assistant )",
"required": true
},
"API_HASH": {
"description": "from my.telegram.org/apps ( for assistant )",
"required": true
},
"TGB_TOKEN": {
"description": "Bot token by @BotFather",
"required": true
},
"BOT_SESSION": {
"description": "Session",
"required": true
},
"OWNER_ID": {
"description": "OWNER ID ( Telegram ID )",
"required": true
},
"API_ID1": {
"description": "from my.telegram.org/apps ( owner assistant )",
"required": true
},
"API_HASH1": {
"description": "from my.telegram.org/apps ( owner assistant )",
"required": true
},
"SESSION1": {
"description": "Session ( owner assistant )",
"required": true
},
"IG_USN": {
"description": "Instagram Downloader ( IG Username )",
"required": true
},
"IG_PASS": {
"description": "Instagram Downloader ( IG Password )",
"required": true
},
"IG_SECRET": {
"description": "Instagram Downloader ( IG Secret OAuth2)",
"required": true
},
"IPQUALITY_KEY": {
"description": "Plugins Link Checker ( for Phishing ) visit www.ipqualityscore.com",
"required": true
},
"RAPID_KEY": {
"description": "get key from www.rapidapi.com",
"required": true
},
"TimeZone": {
"description": "Time Zone ( Datetime )",
"required": true,
"value": "Asia/Jakarta"
},
"PREFIX": {
"description": "Handler ( separated with comma )",
"required": true,
"value": ".,!,?,;,:,',_,-,+,/,~,@"
},
"HEROKU_NAME": {
"description": "Heroku name ( app name )",
"required": true
},
"HEROKU_API": {
"description": "Heroku api ( API Account )",
"required": true
}
}
}