This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
forked from TeamUltroid/Ultroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
66 lines (66 loc) · 2.1 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
{
"name": "Ultroid UserBot",
"description": "Pluggable telegram userbot, made in python using Telethon.",
"logo": "https://telegra.ph/file/031957757a4f6a5191040.jpg",
"keywords": [
"Telethon",
"telegram",
"userbot",
"python",
"ultroid"
],
"repository": "https://github.com/TeamUltroid/Ultroid",
"website": "https://ultroid.tech",
"success_url": "https://t.me/TheUltroid",
"stack": "container",
"env": {
"API_ID": {
"description": "You api id, from my.telegram.org or @ScrapperRoBot.",
"value": ""
},
"API_HASH": {
"description": "You api hash, from my.telegram.org or @ScrapperRoBot.",
"value": ""
},
"BOT_TOKEN": {
"description": "Make a bot from @BotFather, and enter it's api token here.",
"value": ""
},
"SESSION": {
"description": "Your session string. Can be added now, or after deploy. (The bot will NOT work without a session string!!)",
"value": ""
},
"REDIS_URI": {
"description": "Redis endpoint URL, from redislabs.com",
"value": ""
},
"REDIS_PASSWORD": {
"description": "Redis endpoint password, from redislabs.com",
"value": ""
},
"HEROKU_API": {
"description": "Heroku API token. Needed if deploying on heroku ONLY.",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Name of your heroku app, given in the first blank on this page. To be added if deploying to heroku ONLY.",
"value": "",
"required": false
},
"LOG_CHANNEL": {
"description": "Create a private group. Add @missrose_bot and your BOT_USERNAME bot. Do /id. Paste that here",
"value": ""
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
},
"web": {
"quantity": 0,
"size": "free"
}
}
}