-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
67 lines (67 loc) · 2.47 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
{
"name": "Channel AutoPost Bot",
"description": "Forward new posts of one channel to another channel or group, depends!",
"keywords": [
"telegram",
"telethon",
"bot"
],
"repository": "https://github.com/EmiliaDevs/ChannelAutoPost",
"env": {
"APP_HASH": {
"description": "You API HASH from my.telegram.org",
"required": true,
"value": ""
},
"APP_ID": {
"description": "You API ID from my.telegram.org",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "Bot token, get it from @BotFather.",
"required": true,
"value": ""
},
"SESSION": {
"description": "String session of the account that you want to use as auto poster! Get it from https://replit.com/@SupOK/StringSession#main.py ... Leave it blank if you donot wish to use it as userbot.",
"required": false,
"value": ""
},
"OWNER_ID": {
"description": "Your ID, to receive notifications",
"required": true,
"value": ""
},
"USE_AS_USERBOT": {
"description": "Leave it blank if you don't wanna use it as an userbot",
"required": false,
"value": ""
},
"FROM_CHANNEL": {
"description": "Channel ID (with -100) from which you want to forward new posts. Seperate by a space for multiple channel ids",
"required": true,
"value": ""
},
"TO_CHANNEL": {
"description": "Channel ID (with -100) to where you want to forward new posts for other channels. Only one ID allowed",
"required": true,
"value": ""
},
"REMOVE_POST_CAPTION": {
"description": "Leave it blank if you don't want captionless media posts from FROM_CHANNEL",
"required": false,
"value": ""
},
"CUSTOM_FOOTER": {
"description": "Message that will be shown at last of all posts, you can use formatters like, **word** for old, __word__ for italics, ~~word~~ for strikethrough and --word-- for underlined text.... leave it blank if you dont want to enable it",
"required": false,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}