1
0
Fork 0
mirror of https://gitea.jellypro.xyz/jude/reminder-bot.git synced 2025-12-13 17:26:24 +00:00
Reminder Bot for Discord, now in Rust
Find a file
2025-11-26 18:35:20 +00:00
.sqlx Docker compose setup 2025-11-05 18:30:49 +00:00
assets Remove need to supply webhook avatar 2023-05-08 17:32:59 +01:00
conf Add geoip data and 451 handler 2025-02-09 17:02:44 +00:00
debian Use conffiles 2023-06-17 12:49:01 +01:00
extract_derive Link all top-level commands with macro recording/replaying logic 2024-02-18 13:24:37 +00:00
migrations Add patreon-sharing option 2025-10-04 18:09:31 +01:00
nginx Correct service file 2024-06-12 17:21:42 +01:00
private Move postman and web inside src 2024-03-24 20:23:16 +00:00
recordable_derive Link all top-level commands with macro recording/replaying logic 2024-02-18 13:24:37 +00:00
reminder-dashboard Retry the fix 2025-03-20 16:56:10 +00:00
src Fix dashboard rendering 2025-11-09 16:07:14 +00:00
static Fix dashboard rendering 2025-11-09 16:07:14 +00:00
systemd .. 2024-10-13 19:01:37 +01:00
templates Add some docs 2025-09-16 21:06:51 +01:00
.gitignore Fix dashboard rendering 2025-11-09 16:07:14 +00:00
.prettierrc.toml collapse/expand elements. moved the embed color picker 2022-03-20 18:29:27 +00:00
build.rs Fix dashboard rendering 2025-11-09 16:07:14 +00:00
Caddyfile Use Caddy to serve localhost HTTPS 2025-11-23 10:32:37 +00:00
Cargo.lock Bump version 2025-10-27 17:53:47 +00:00
Cargo.toml Bump version 2025-10-27 17:53:47 +00:00
compose.yaml Use Caddy to serve localhost HTTPS 2025-11-23 10:32:37 +00:00
Containerfile Improve error message 2025-03-08 18:20:04 +00:00
Containerfile.run Update run containerfile for /remind support 2025-11-26 18:35:20 +00:00
dp.py natural command stuff 2020-09-26 22:23:41 +01:00
gb-ipv4.csv Add geoip data and 451 handler 2025-02-09 17:02:44 +00:00
LICENSE Create LICENSE 2020-09-21 09:16:10 +00:00
README.md Docker compose setup 2025-11-05 18:30:49 +00:00
Rocket.toml Working on adding docker stuff 2024-09-29 17:49:48 +01:00
rustfmt.toml more commands. fixed an issue with text only commands 2021-09-11 00:14:23 +01:00

reminder-rs

Reminder Bot for Discord.

How do I use it?

I offer a hosted version of the bot. You can invite it with: https://invite.reminder-bot.com. The catch is that repeating reminders are paid on the hosted version of the bot. Keep reading if you want to host it yourself.

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)

Build APT package

Recommended method.

By default, this builds targeting Ubuntu 20.04. Modify the Containerfile if you wish to target a different platform. These instructions are written using podman, but docker should work too.

  1. Install container software: sudo apt install podman.
  2. Install database server: sudo apt install mysql-server-8.0. Create a database called reminders
  3. Install SQLx CLI: cargo install sqlx-cli
  4. From the source code directory, execute sqlx migrate run
  5. Build container image: podman build -t reminder-rs .
  6. Build with podman: podman run --rm --network=host -v "$PWD":/mnt -w /mnt -e "DATABASE_URL=mysql://user@localhost/reminders" reminder-rs cargo deb

Compiling for other target

  1. Install requirements: sudo apt install gcc gcc-multilib cmake libssl-dev build-essential python3-dateparser
  2. Install rustup from https://rustup.rs
  3. Install the nightly toolchain: rustup toolchain default nightly
  4. Install database server: sudo apt install mysql-server-8.0. Create a database called reminders.
  5. Install sqlx-cli: cargo install sqlx-cli.
  6. Run migrations: sqlx migrate run.
  7. Set environment variables:
    • DATABASE_URL - the URL of your MySQL database (mysql://user[:password]@domain/database)
  8. Build: cargo build --release

Configuring

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

  • MIN_INTERVAL - default 600, defines the shortest interval the bot should accept
  • LOCAL_TIMEZONE - default UTC, necessary for calculations in the natural language processor
  • SUBSCRIPTION_ROLES - default None, accepts a list of Discord role IDs that are given to subscribed users
  • CNC_GUILD - default None, accepts a single Discord guild ID for the server that the subscription roles belong to
  • PYTHON_LOCATION - default /usr/bin/python3. Can be changed if your Python executable is located somewhere else
  • THEME_COLOR - default 8fb677. Specifies the hex value of the color to use on info message embeds

Running with Docker

A compose.yml file is provided to aid in running the bot agnostically using docker.

  • Populate a .env file as in conf/default.env
  • Add the additional variable ROCKET_SECRET_KEY with a key generated from head -c64 /dev/urandom | base64
  • Run docker compose up

Please note that this is not production-ready when run via compose. We do not offer a way for backing up of your data, or a way to run the dashboard securely via HTTPS, which is required for OAuth.