-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
117 lines (116 loc) · 3.01 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ASTRO🌌UserBot🇮🇳",
"description": "A plugable userbot with lots of features and special security modules",
"logo": "https://telegra.ph/file/b1f217e58d67de4af1ab2.jpg",
"keywords": [
"telegram",
"userbot",
"astro",
"plugable"
],
"repository": "https://github.com/AstroUB/AstroUB",
"website": "https://github.com/loverboyXD",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable heroku.",
"value": "ANYTHING"
},
"API_ID": {
"description": "Your Api_id get from @Api_ScrapperRoBot or my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Your Api_Hash get from @Api_ScrapperRoBot or my.telegram.org",
"value": "",
"required": true
},
"STRING_SESSION": {
"description": "A TELETHON string session get from https://replit.com/@loverboyXD/SESSIONSTRING-GEN#main.py",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "Your Telegram Account id get from @Lovishmanager_bot",
"value": ""
},
"OWNER_USERNAME": {
"description": "Your Telegram Account Username with '@' ",
"value": ""
},
"BOT_TOKEN": {
"description": "Your Bot Token get from @Botfather ",
"value": ""
},
"BOT_USERNAME": {
"description": "Your bot username with '@' get from @BotFather",
"value": ""
},
"HEROKU_API_KEY": {
"description": "Your Heroku account Api_key..Needed to run Updater",
"value": ""
},
"HEROKU_APP_NAME": {
"description": "Your App name paste Here also",
"value": ""
},
"PRIVATE_GROUP_ID": {
"description": "A Private group Where You will get Your Account updates via your bot...IT MUST START FROM -100",
"value": ""
},
"BOT_PIC": {
"description": "A telegraph link of picture which you wanna to show in Assistant bot",
"value": "",
"required": false
},
"PM_PIC": {
"description": "Telegraph link of picture that you wanna to show in PM_SECURITY",
"value": "",
"required": false
},
"PM_TEXT": {
"description": "Text Which you wanna to show in PM_SECURITY",
"value": "",
"required": false
},
"HNDLR": {
"description": "Your Command Hander of ASTRO leave it as it is for (dot)",
"value": "",
"required": false
},
"NAME": {
"description": "Your name which You wanna to show in Alive",
"value": "",
"required": false
},
"A_TEXT": {
"description": "TEXT Which you wanna to show in Alive ",
"value": "",
"required": false
},
"A_PIC": {
"description": " telegraph link of Picture that you wanna to show in Alive",
"value": "",
"required": false
},
"SUDO_USER": {
"description": "Id of those to whom you wanna to assign as Sudo users",
"value": "",
"required": false
},
"SUDO_HNDLR": {
"description": "command Handler of sudo users",
"value": "",
"required": false
}
},
"addons": [{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}],
"buildpacks": [{
"url": "heroku/python"
}]
}