Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
InukaAsith authored Nov 5, 2020
1 parent f3866f0 commit c7919cb
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@

{
"name": "GroupHelpManager Bot",
"description": "Modular Telegram group management bot!",
"keywords": [
"telegram",
"best",
"group",
"manager",
"3"
],
"repository": "hhttps://github.com/InukaAsith/DaisySL",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables",
"value": "ANYTHING"
},
"TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "1141839926"
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "InukaASiTH"
},

"URL": {
"description": "The Heroku App URL similar to https://<appname>.herokuapp.com/",
"value": ""
},
"MESSAGE_DUMP": {
"description": "optional: a chat where your replied saved messages are stored, to stop people deleting their old",
"value": "-1007777777777"
},
"SUDO_USERS": {
"description": "A space separated list of user_ids which should be considered sudo users",
"value": "1141839926"
},
"SUPPORT_USERS": {
"description": "A space separated list of user_ids which should be considered support users (can gban/ungban, nothing else)",
"value": "1141839926"
},
"WHITELIST_USERS": {
"description": "A space separated list of user_ids which should be considered whitelisted - they can't be banned.",
"value": "1141839926"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations.",
"value": "https://www.paypal.me/Your_id_here"
},
"PORT": {
"description": "Port to use for your webhooks",
"value": "8443"
},
"DEL_CMDS": {
"description": "Whether to delete commands from users which don't have rights to use that command",
"value": "True"
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned.",
"value": "True"
},
"ALLOW_EXCL": {
"description": "Whether to allow using exclamation marks ! for commands as well as /.",
"value": "True"
},
"BAN_STICKER": {
"description": "Which sticker to use when banning people. Use https://telegram.dog/ShowJsonBot to get the file_id",
"value": "CAADBQADNwEAAjZzSxRZAc49mnFSSAI"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "10"
}
}
]
}

0 comments on commit c7919cb

Please sign in to comment.