-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
26 lines (26 loc) · 766 Bytes
/
app.json
File metadata and controls
26 lines (26 loc) · 766 Bytes
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
{
"name": "send-message-pyrogram",
"description": "A python script used to send messages to users using the Pyrogram",
"repository": "https://github.com/ViaxCo/send-message-pyrogram",
"logo": "https://avatars1.githubusercontent.com/u/34474300?s=280&v=4",
"keywords": ["python", "pyrogram", "telegram", "mtproto"],
"image": "heroku/python",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"env": {
"API_ID": {
"description": "App api_id from https://my.telegram.org"
},
"API_HASH": {
"description": "App api_hash from https://my.telegram.org"
},
"SESSION_STRING": {
"description": "String generated from 'python3 GenerateSessionString.py'",
"required": false
}
}
}