forked from legenhand/Nana-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
122 lines (122 loc) · 3.71 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
{
"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/legenhand/Nana-Bot",
"website": "sagita.tech",
"success_url": "https://t.me/nanabotsupport",
"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": ""
},
"DB_URI": {
"description": "Required to use an external db, try ElephantSQL: https://customer.elephantsql.com/login",
"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
},
"NANA_IMG": {
"description": "(optional) Url of a photo to show up in your Assistant",
"value": "",
"required": false
},
"lang_code": {
"description": "(optional) Your language code",
"value": "en",
"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
},
"lydia_api": {
"description": "(optional) Fill in your Coffeehouse API, get from https://coffeehouse.intellivoid.net",
"value": "False",
"required": false
},
"bitly_token": {
"description": "(optional) Register at : https://http://app.bitly.com/ profile settings -> generic access token",
"required": false
},
"remove_bg_api": {
"description": "(optional) Register at : https://www.remove.bg/",
"required": false
},
"HEROKU_API": {
"description": "HEROKU API KEY For support updater",
"required": true
},
"USERBOT_LOAD": {
"description": "(optional) Fill if you want to load that module only",
"required": false
},
"USERBOT_NOLOAD": {
"description": "(optional) Fill if you dont want to load that module",
"required": false
},
"ASSISTANT_LOAD": {
"description": "(optional) Fill if you want to load that module only",
"required": false
},
"ASSISTANT_NOLOAD": {
"description": "(optional) Fill if you dont want to load that module",
"required": false
},
"USERBOT_SESSION": {
"description": "[REQUIRED] For make a session: https://sagita.tech/2020/02/03/cara-mendapatkan-userbot-session-dan-assistant-session/"
},
"ASSISTANT_SESSION": {
"description": "[REQUIRED] For make a session: https://sagita.tech/2020/02/03/cara-mendapatkan-userbot-session-dan-assistant-session/"
}
}
}