-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.19 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
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
{
"name": "Eagle Userbot",
"description": "A Telegram based Smooth Userbot to manage your Telegram account effectively based on Pyrogram Library.",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"SESSION": {
"description": "Get this value by running eaglesession.py or use eagle Replit Tool.",
"required": true
},
"MONGO_URI": {
"description": "This is for the database account, you can obtain it from mongodb.com.",
"required": true
},
"HEROKU_API": {
"description": "Your heroku api key if using heroku.",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Your heroku app name if using heroku.",
"required": false
},
"PREFIX": {
"description": "Command handler.",
"required": true,
"vale": "."
},
"LOG_CHAT": {
"description": "A private group ID to store your logs. Add Rose Bot to get it.",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}