video-stream/app.json

87 lines
2.9 KiB
JSON
Raw Normal View History

2021-09-09 01:18:24 +00:00
{
2021-11-03 11:54:59 +00:00
"name": "Video x Music Stream Bot",
2022-01-23 15:07:16 +00:00
"description": "Telegram bot for Streaming Video & Music trought the Telegram Group Video Chat, powered by PyTgCalls and Pyrogram",
2021-11-03 11:54:59 +00:00
"logo": "https://telegra.ph/file/1c41ded2dd871eb36bd7e.png",
2021-09-09 01:18:24 +00:00
"keywords": [
2022-01-23 15:06:03 +00:00
"py-tgcalls",
2021-09-09 01:18:24 +00:00
"telegram bot",
2021-11-03 11:54:59 +00:00
"video stream",
2022-01-23 15:06:03 +00:00
"live stream",
"music stream",
"mongodb",
2021-11-03 11:54:59 +00:00
"pyrogram"
2021-09-09 01:18:24 +00:00
],
"website": "https://t.me/levinachannel",
"repository": "https://github.com/levina-lab/video-stream",
"success_url": "https://t.me/dlwrml",
"env": {
"API_ID": {
2021-11-03 11:54:59 +00:00
"description": "your API_ID from my.telegram.org",
2021-09-09 01:18:24 +00:00
"required": true
},
"API_HASH": {
"description": "your API_HASH from my.telegram.org",
"required": true
},
"BOT_TOKEN": {
2021-11-03 11:54:59 +00:00
"description": "your bot token from @BotFather",
2021-09-09 01:18:24 +00:00
"required": true
},
"BOT_USERNAME": {
2022-01-25 07:32:38 +00:00
"description": "fill with your bot username from @BotFather but without using '@' symbol",
2021-09-09 01:18:24 +00:00
"required": true
},
"SESSION_NAME": {
"description": "fill with the pyrogram String Session",
"required": true
},
2022-01-23 15:06:03 +00:00
"MONGODB_URL": {
2022-02-05 05:53:14 +00:00
"description": "fill with the mongodb url, You must create it first from cloud.mongodb.com (tutorial about how to make it, find it on @VeezSupportGroup)",
2021-09-09 01:18:24 +00:00
"required": true
},
2022-01-23 15:06:03 +00:00
"SUDO_USERS": {
2022-02-05 05:53:14 +00:00
"description": "fill with the user id you want to be added into sudo member list (separate with spaces), or You can just fill this with your id",
"required": true
2022-01-23 15:06:03 +00:00
},
2022-02-09 15:11:50 +00:00
"OWNER_ID": {
"description": "fill with your own telegram id, this is needed because there's any feature that only can be used by bot owner",
"required": true
2022-01-25 07:32:38 +00:00
},
2021-10-26 15:01:01 +00:00
"GROUP_SUPPORT": {
2021-11-03 11:54:59 +00:00
"description": "if you have group, then fill the group username here without @",
2022-02-05 05:53:14 +00:00
"required": true
},
2021-10-26 15:01:01 +00:00
"UPDATES_CHANNEL": {
2021-11-03 11:54:59 +00:00
"description": "if you have channel, then fill the channel username here without @",
2022-02-05 05:53:14 +00:00
"required": true
},
2022-02-11 05:55:01 +00:00
"OWNER_USERNAME": {
"description": "fill with your telegram account username without @",
2022-02-05 05:53:14 +00:00
"required": true
2021-10-26 15:01:01 +00:00
},
"ALIVE_NAME": {
2021-11-03 11:54:59 +00:00
"description": "fill with your telegram account nickname/name",
2022-02-05 05:53:14 +00:00
"required": true
2021-09-09 01:18:24 +00:00
}
},
2021-11-15 13:00:18 +00:00
"addons": [],
2021-09-09 01:18:24 +00:00
"buildpacks": [
{
"url": "heroku/python"
},
2021-09-13 11:04:52 +00:00
{
"url": "heroku/nodejs"
},
2021-09-09 01:18:24 +00:00
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
2021-09-09 01:18:24 +00:00
}