This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
forked from karandon24/Nana-Remix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
158 lines (158 loc) · 4.98 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"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/pokurt/Nana-Remix",
"website": "pokurt.github.io",
"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": "To use this userbot, get your development App ID from https://my.telegram.org/apps.",
"required": true
},
"api_hash": {
"description": "To use this userbot, get your development API hash from https://my.telegram.org/apps.",
"required": true
},
"Owner": {
"description": "Go to some bot such as Rose and check your id there.",
"required": true
},
"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",
"required": true
},
"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) Image URL to show up in your Assistant",
"value": "",
"required": false
},
"time_country": {
"description": "(optional) input your timezone from this list: https://telegra.ph/Time-Zone-list-for-Nana-Remix-07-21",
"value": "",
"required": false
},
"IBM_WATSON_CRED_URL": {
"description": "(optional)",
"value": "",
"required": false
},
"IBM_WATSON_CRED_PASSWORD": {
"description": "(optional)",
"value": "",
"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) To get an API key, signup at https://thumbnail.ws/.",
"required": false
},
"screenshotlayer_API": {
"description": "(optional) To get an API key, signup at https://screenshotlayer.com/.",
"value": "False",
"required": false
},
"PM_PERMIT": {
"description": "(optional) Set to True if you want to turn on PM Permit",
"value": "False",
"required": false
},
"lydia_api": {
"description": "(optional) Fill in your Coffeehouse API, get one from https://coffeehouse.intellivoid.net",
"value": "False",
"required": false
},
"bitly_token": {
"description": "(optional) Sign in to https://http://app.bitly.com/, then open Profile Settings -> Generic Access Token.",
"required": false
},
"remove_bg_api": {
"description": "(optional) To get an API toen, signup at https://www.remove.bg/.",
"required": false
},
"HEROKU_API": {
"description": "Your Heroku API key for updater to work. Generate one at https://dashboard.heroku.com/account/applications/authorizations/new.",
"required": true
},
"USERBOT_LOAD": {
"description": "(optional) Fill if you want to load some modules for your userbot.",
"required": false
},
"USERBOT_NOLOAD": {
"description": "(optional) Fill if you want to unload some modules for your userbot.",
"required": false
},
"ASSISTANT_LOAD": {
"description": "(optional) Fill if you want to load some modules for your Assistant.",
"required": false
},
"ASSISTANT_NOLOAD": {
"description": "(optional) Fill if you want to unload some modules for your Assistant.",
"required": false
},
"USERBOT_SESSION": {
"description": "To generate an session, read: https://aman-a.gitbook.io/nana-remix/deploy-nana-remix-on-heroku",
"required": true
},
"ASSISTANT_SESSION": {
"description": "To generate an session, read: https://aman-a.gitbook.io/nana-remix/deploy-nana-remix-on-heroku",
"required": true
},
"sw_api": {
"description": "Read SpamWatch Docs on How to obtain api, https://docs.spamwat.ch/",
"required": false
}
}
}