-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
125 lines (125 loc) · 3.66 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
118
119
120
121
122
123
124
125
{
"name": "Nana - Telegram Userbot with Assistant",
"description": "A modular Telegram Userbot with Assistant running on Python 3.6+",
"logo": "https://i.imgur.com/m7KfBVq.png",
"keywords": [
"telegram",
"userbot",
"plugin",
"modular",
"nana",
"pyrogram",
"productivity",
"testing"
],
"repository": "https://github.com/AyraHikari/Nana-TgBot",
"website": "https://github.com/AyraHikari/Nana-TgBot/wiki",
"success_url": "https://t.me/AyraSupport",
"stack": "container",
"env": {
"ENV": {
"description": "Fill this if you using environ variable as config.",
"value": "Yes"
},
"api_id": {
"description": "Get this value from https://my.telegram.org/apps",
"value": ""
},
"api_hash": {
"description": "Get this value from https://my.telegram.org/apps",
"value": ""
},
"Owner": {
"description": "Go to some bot, and check your id there. Ex. Emilia or Rose.",
"value": ""
},
"Command": {
"description": "Prefix command, separate by space.",
"value": "! ."
},
"AdminSettings": {
"description": "Fill your telegram id",
"value": ""
},
"ASSISTANT_WORKER": {
"description": "(optional) Worker for Assistant bot",
"value": "2",
"required": false
},
"NANA_WORKER": {
"description": "(optional) Worker for User bot",
"value": "8",
"required": false
},
"REMINDER_UPDATE": {
"description": "(optional) Pass False to disable reminder update every running script",
"value": "True",
"required": false
},
"lang_code": {
"description": "(optional) Your language code",
"value": "en",
"required": false
},
"device_model": {
"description": "(optional) Your device mode for userbot",
"value": "PC",
"required": false
},
"system_version": {
"description": "(optional) Your System version for userbot",
"value": "Linux",
"required": false
},
"thumbnail_API": {
"description": "(optional) Register free here: https://thumbnail.ws/",
"required": false
},
"screenshotlayer_API": {
"description": "(optional) Register free here: https://screenshotlayer.com/",
"value": "False",
"required": false
},
"USERBOT_LOAD": {
"description": "(optional) Fill if you want to load that module only, else leave it blank",
"required": false
},
"USERBOT_NOLOAD": {
"description": "(optional) Fill if you dont want to load that module, else leave it blank",
"required": false
},
"ASSISTANT_LOAD": {
"description": "(optional) Fill if you want to load that module only, else leave it blank",
"required": false
},
"ASSISTANT_NOLOAD": {
"description": "(optional) Fill if you dont want to load that module, else leave it blank",
"required": false
},
"USERBOT_SESSION": {
"description": "[REQUIRED] For make a session: https://github.com/AyraHikari/pyrogram-session-maker"
},
"ASSISTANT_SESSION": {
"description": "[REQUIRED] For make a session: https://github.com/AyraHikari/pyrogram-session-maker"
},
"GOOGLE_API_TEXT": {
"description": "(optional) Open client_secrets.json from your google drive API, copy all then paste in here"
},
"BITLY_API": {
"description": "(optional) Fill your Bitly API, register here: https://dev.bitly.com/my_apps.html"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
]
}