-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix formatting * chore: remove outdated database.sql * fix: add aiomysql to requirements.txt * fix: syntax error in minecraft cog * chore: update example config * fix: add missing munmute_help string * fix: syntax warnings * fix: silence aiomysql warnings * fix: await close of aiohttp session * chore: remove unnecssary diff * chore: use original import order * chore: remove aiomysql * chore: change example `DATABASE` to postgres
- Loading branch information
1 parent
7ea4a6c
commit 0a870a4
Showing
9 changed files
with
214 additions
and
293 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
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
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
# Gearbot | ||
|
||
|
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 |
---|---|---|
@@ -1,76 +1,69 @@ | ||
{ | ||
"LOGIN_TOKEN": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", | ||
"BOT_LOG_CHANNEL": 365908831328403456, | ||
"CROWDIN_KEY": null, | ||
"DATABASE_HOST": "localhost", | ||
"DATABASE_NAME": "gearbot", | ||
"DATABASE_PASS": "database password", | ||
"DATABASE_PORT": 3306, | ||
"DATABASE_USER": "gearbot", | ||
"APEX_KEY": "", | ||
"REDIS_HOST": "localhost", | ||
"REDIS_PORT": 6379, | ||
"REDIS_SOCKET": "", | ||
"SENTRY_DSN": "", | ||
"EMOJI": { | ||
}, | ||
"EMOJI_GUILD": null, | ||
"GUIDES": 0, | ||
"inbox": 0, | ||
"COGS": [ | ||
"Basic", | ||
"Admin", | ||
"Moderation", | ||
"ServerAdmin", | ||
"ModLog", | ||
"CustCommands", | ||
"BCVersionChecker", | ||
"Reload", | ||
"ReactionHandler", | ||
"Censor", | ||
"Infractions", | ||
"Interactions", | ||
"Minecraft", | ||
"DMMessages", | ||
"Reminders", | ||
"Emoji", | ||
"AntiSpam" | ||
], | ||
"TRANSLATIONS": { | ||
"CHANNEL": 0, | ||
"KEY": "", | ||
"LOGIN": "", | ||
"SOURCE": "DISABLED", | ||
"WEBROOT": "" | ||
}, | ||
"DOCS": true, | ||
"DISABLED_COMMANDS": [], | ||
"DASH_OUTAGE": { | ||
"outage_detection": false, | ||
"max_bot_outage_warnings": 1, | ||
"dash_outage_channel": 999999999, | ||
"dash_outage_pinged_roles": [], | ||
"dash_outage_message": "The Dashboard went down! Please look into it!", | ||
"dash_outage_embed": { | ||
"title": "Dashboard Outage Detected", | ||
"timestamp": "", | ||
"color": "FF0000", | ||
"description": "The Dashboard is suspected to be down, it hasn't responded in over 3 minutes!", | ||
"author": { | ||
"name": "Gearbot Dashboard Monitor" | ||
}, | ||
"fields": [ | ||
{ | ||
"name": "Alert Count", | ||
"value": "{warnings_sent}/{MAX_BOT_OUTAGE_WARNINGS}", | ||
"inline": true | ||
} | ||
] | ||
} | ||
}, | ||
"global_inf_counter": true, | ||
"min_cached_users": 0, | ||
"purge_db": true | ||
|
||
"LOGIN_TOKEN": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", | ||
"BOT_LOG_CHANNEL": 365908831328403456, | ||
"CROWDIN_KEY": null, | ||
"DATABASE": "postgres://gearbot:gearbot@localhost:5432/gearbot", | ||
"APEX_KEY": "", | ||
"REDIS_HOST": "localhost", | ||
"REDIS_PORT": 6379, | ||
"REDIS_SOCKET": "", | ||
"SENTRY_DSN": "", | ||
"EMOJI": {}, | ||
"EMOJI_GUILD": 365498559174410241, | ||
"GUIDES": 0, | ||
"inbox": 0, | ||
"COGS": [ | ||
"Basic", | ||
"Admin", | ||
"Moderation", | ||
"ServerAdmin", | ||
"ModLog", | ||
"CustCommands", | ||
"BCVersionChecker", | ||
"Reload", | ||
"ReactionHandler", | ||
"Censor", | ||
"Infractions", | ||
"Interactions", | ||
"Minecraft", | ||
"DMMessages", | ||
"Reminders", | ||
"Emoji", | ||
"AntiSpam" | ||
], | ||
"TRANSLATIONS": { | ||
"CHANNEL": 0, | ||
"KEY": "", | ||
"LOGIN": "", | ||
"SOURCE": "DISABLED", | ||
"WEBROOT": "" | ||
}, | ||
"DOCS": true, | ||
"DISABLED_COMMANDS": [], | ||
"DASH_OUTAGE": { | ||
"outage_detection": false, | ||
"max_bot_outage_warnings": 1, | ||
"dash_outage_channel": 999999999, | ||
"dash_outage_pinged_roles": [], | ||
"dash_outage_message": "The Dashboard went down! Please look into it!", | ||
"dash_outage_embed": { | ||
"title": "Dashboard Outage Detected", | ||
"timestamp": "", | ||
"color": "FF0000", | ||
"description": "The Dashboard is suspected to be down, it hasn't responded in over 3 minutes!", | ||
"author": { | ||
"name": "Gearbot Dashboard Monitor" | ||
}, | ||
"fields": [ | ||
{ | ||
"name": "Alert Count", | ||
"value": "{warnings_sent}/{MAX_BOT_OUTAGE_WARNINGS}", | ||
"inline": true | ||
} | ||
] | ||
} | ||
}, | ||
"global_inf_counter": true, | ||
"min_cached_users": 0, | ||
"purge_db": true | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1 @@ | ||
{ | ||
|
||
|
||
} | ||
{} |
Oops, something went wrong.