-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3866f0
commit c7919cb
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
] | ||
} |