forked from aahnik/tgcf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
41 lines (41 loc) · 1.53 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
{
"name": "tgcf",
"stack": "container",
"description": "The ultimate tool to automate telegram message forwarding. To learn more visit https://github.com/aahnik/tgcf/wiki/Deploy-to-Heroku",
"keywords": ["telegram", "forwarding", "automation"],
"website": "https://aahnik.dev",
"repository": "https://github.com/CButsko/tg_forwarder",
"logo": "https://user-images.githubusercontent.com/66209958/115183360-3fa4d500-a0f9-11eb-9c0f-c5ed03a9ae17.png",
"env": {
"API_ID": {
"description": "Put the API ID obtained from my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Put the API HASH obtained from my.telegram.org",
"value": "",
"required": true
},
"TGCF_MODE": {
"description": "The mode you want to run tgcf past/live. Default is live.",
"value": "live",
"required": true
},
"TGCF_CONFIG": {
"description": "(Optional) Put the contents of tgcf.config.yml here.",
"value": "",
"required": false
},
"BOT_TOKEN": {
"description": "(Optional) Put your bot token only if you are running tgcf live with a bot account. To create a new bot, go to @BotFather in Telegram.",
"value": "",
"required": false
},
"SESSION_STRING": {
"description": "(Optional) Put this, only if you are using your user account. Generate your session string from here https://replit.com/@aahnik/tg-login. This is NOT required if you are using a bot account.",
"value": "",
"required": false
}
}
}