-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more error handling and logging; bug fixes; move configuration to .env
- Loading branch information
Showing
4 changed files
with
73 additions
and
33 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,16 @@ | ||
# in case you got rate limited | ||
USE_PROXY=False | ||
PROXY=http://localhost:8080 | ||
|
||
# channel ids where the bot listens for messages | ||
ALLOWED_IDS=1234567890123456789,... | ||
|
||
# reactions list in unicode, emoji and escape formats | ||
REACTIONS=🇧,🇮,🇹,🇨,🇭 | ||
|
||
# random delay range in seconds | ||
MIN_DELAY=1 | ||
MAX_DELAY=5 | ||
|
||
# your discord user token, see https://www.androidauthority.com/get-discord-token-3149920/ | ||
USER_TOKEN= |
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 +1,2 @@ | ||
discord.py-self>=2.0.0 | ||
discord.py-self==2.0.0 | ||
python-dotenv>=1.0.0 |