-
-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathapp.json
More file actions
123 lines (123 loc) ยท 3.52 KB
/
app.json
File metadata and controls
123 lines (123 loc) ยท 3.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "Shruti Music",
"description": "A Telegram Music Player Bot, written in Python with Pyrogram and Py-Tgcalls.",
"logo": "https://files.catbox.moe/v7hio8.jpg",
"keywords": [
"python3",
"telegram",
"bot",
"ShrutiBots",
"MusicBot",
"telegram-bot",
"pyrogram"
],
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": "29448785",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": "599574f6aff0a09ebb76305b58e7e9c2",
"required": true
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "",
"required": true
},
"MONGO_DB_URI": {
"description": "Get a mongodb url from https://cloud.mongodb.com.",
"value": "mongodb+srv://pusers:nycreation@nycreation.pd4klp1.mongodb.net/?retryWrites=true&w=majority&appName=NYCREATION",
"required": true
},
"OWNER_ID": {
"description": "The user id of user whom you would like to add as OWNER.",
"value": "7574330905",
"required": true
},
"BOT_USERNAME": {
"description": "The username of your bot (without @)",
"value": "ShrutixMusicBot",
"required": true
},
"UPSTREAM_REPO": {
"description": "URL of your GitHub repository",
"value": "https://github.com/NoxxOP/ShrutiMusic",
"required": false
},
"STRING_SESSION": {
"description": "A Pyrogram v2 String Session from Replit.",
"value": "",
"required": true
},
"GIT_TOKEN": {
"description": "Your GitHub personal access token (if needed for private repos)",
"value": "",
"required": false
},
"HEROKU_API_KEY": {
"description": "Your Heroku account's API key",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Your heroku app name",
"value": "",
"required": false
},
"LOG_GROUP_ID": {
"description": "Your Log Group ID, add your bot and promote as an admin with full rights!. Do not ever try to put channel ID here.",
"value": "",
"required": true
},
"SUPPORT_GROUP": {
"description": "Your support group link",
"value": "https://t.me/ShrutiSupportChat",
"required": false
},
"SUPPORT_CHANNEL": {
"description": "Your support channel link",
"value": "https://t.me/ShrutiBots",
"required": false
},
"INSTAGRAM": {
"description": "Your Instagram profile link or Any Link",
"value": "https://instagram.com/yaduwanshi_nand",
"required": false
},
"YOUTUBE": {
"description": "Your YouTube channel link or Any Link",
"value": "https://youtube.com/@NandEditz",
"required": false
},
"GITHUB": {
"description": "Your GitHub profile link or Any Link",
"value": "https://github.com/NoxxOP",
"required": false
},
"DONATE": {
"description": "Link where people can support/donate or Any Link",
"value": "http://bit.ly/3NITa3G",
"required": false
},
"START_IMG_URL": {
"description": "Image that appears with the /start command",
"value": "https://graph.org/file/e054e63251ef2dc5729dd-6f719a9ecc59862631.png",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"stack": "container"
}