-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
138 lines (138 loc) · 3.93 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
{
"name": "SKYNOID_USERBOT",
"description": "A Pyrogram Based Modular UserBot.",
"logo": "https://telegra.ph/file/08186572b79c9b45fa08d.jpg",
"keywords": [
"telegram",
"pyrogram",
"skynoid",
"userbot",
"productivity"
],
"repository": "https://github.com/TeamEviral/Skynoid",
"website": "https://codetech.org/",
"success_url": "t.me/Skynoidbot",
"stack": "container",
"env": {
"api_id": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"api_hash": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"OWNER": {
"description": "Your Account Id. Get it by using @HaritaRobot",
"value": ""
},
"OWNERUSERNAME": {
"description": "Your Telegram Username without @",
"value": ""
},
"COMMAND": {
"description": "Your Command Prefixes like '! . - ^'",
"value": ".",
"required": false
},
"DB_URI": {
"description": "Your Postgres Database. Use it as Default",
"value": "postgres://username:password@localhost:5432/database"
},
"LOGGER": {
"description": "LEAVE IT AS IT IS",
"value": "True"
},
"AdminSettings": {
"description": "Put your sudo users id here.",
"value": ""
},
"Logs": {
"description": "A group id where all Logs will be saved.",
"value": ""
},
"REPOSITORY": {
"description": "Your Upstream URL HERE. If You're Beginner, Don't Change This.",
"value": "https://github.com/TeamEviral/Skynoid",
"required": false
},
"LANG_CODE": {
"description": "Your Language Code Like en, hi exc",
"value": "en"
},
"ASSISTANT_BOT_TOKEN": {
"description": "Your Bot Token Obtained From @BotFather.",
"value": ""
},
"PM_PERMIT": {
"description": "Use it As Default",
"value": "True"
},
"REMINDER_UPDATE": {
"description": "Use it As Default",
"value": "True"
},
"SKYNOID_IMG": {
"description": "Use A Telegraph Link of Your Dp",
"value": ""
},
"time_country": {
"description": "Input Your Time Zone",
"value": "Kolkata"
},
"IBM_WATSON_CRED_URL": {
"description": "IBM HOST URL, visit https://t.me/skynoidsupport for more help",
"required": false
},
"IBM_WATSON_CRED_PASSWORD": {
"description": "IBM HOST PASSWORD, visit https://t.me/nanabotsupport for more help",
"required": false
},
"screenshotlayer_API": {
"description": "get the api key from https://screenshotlayer.com",
"required": false
},
"remove_bg_api": {
"description": "get your api key from https://remove.bg",
"required": false
},
"env": {
"description": "true if hosting on heroku",
"value": "true"
},
"SKYNOID_WORKER": {
"description": "Userbot Workers",
"value": "8",
"required": true
},
"ASSISTANT_WORKER": {
"description": "Assistant Workers",
"value": "5",
"required": true
},
"USERBOT_LOAD": {
"description": "Fill if you want to load up some modules for your userbot (separate with space)",
"required": false
},
"USERBOT_NOLOAD": {
"description": "Fill if you want to ignore some modules for your userbot (separate with space)",
"required": false
},
"ASSISTANT_LOAD": {
"description": "Fill if you want to load up some modules for your ASSISTANT (separate with space)",
"required": false
},
"ASSISTANT_NOLOAD": {
"description": "Fill if you want to ignore some modules for your ASSISTANT (separate with space)",
"required": false
},
"sw_api": {
"description": "read spamwatch documentation on how to get the API KEY https://docs.spamwat.ch",
"required": false
},
"USERBOT_SESSION": {
"description": "Your String Session.",
"value": ""
}
}
}