2.2 KiB
reminder-rs
Reminder Bot for Discord, now in Rust. Old Python version: https://github.com/reminder-bot/bot
What is this?
This is a rewrite of Reminder Bot in Rust, using Serenity and SQLx amongst other libraries.
Why is this?
Serenity and Rust are proving wonders for SoundFX. This is all in an effort to reduce resource consumption and improve performance.
How do I use it?
You'll need rustc and cargo for compilation. To run, you'll need Python 3 still (due to no suitable replacement for dateparser in Rust)
Compiling
Reminder Bot can be built by running cargo build --release
in the top level directory.
Setting up Python
Reminder Bot by default looks for a venv within it's working directory to run Python out of. To set up a venv, install python-venv
and run python -m venv venv
. Then, run source venv/bin/activate
to activate the venv, and do pip install dateparser
to install the required library
Environment Variables
Reminder Bot reads a number of environment variables. Some are essential, and others have hardcoded fallbacks. Environment variables can be loaded from a .env file in the working directory.
Required Variables
DATABASE_URL
- the URL of your MySQL database (mysql://user[:password]@domain/database
)DISCORD_TOKEN
- your application's bot user's authorization token
Other Variables
LOCAL_TIMEZONE
- defaultUTC
, necessary for calculations in the natural language processorDEFAULT_PREFIX
- default$
, used for the default prefix on new guildsSUBSCRIPTION_ROLES
- defaultNone
, accepts a list of Discord role IDs that are given to subscribed usersCNC_GUILD
- defaultNone
, accepts a single Discord guild ID for the server that the subscription roles belong toIGNORE_BOTS
- default1
, if1
, Reminder Bot will ignore all other botsPYTHON_LOCATION
- defaultvenv/bin/python3
. Can be changed if your Python executable is located somewhere elseLOCAL_LANGUAGE
- defaultEN
. Specifies the string set to fall back to if a string cannot be found (and to be used with new users)THEME_COLOR
- default8fb677
. Specifies the hex value of the color to use on info message embeds