Telegram bot for managing reminders.
- Setup your bot with @botfather.
-
Install Rust.
-
Install the crate and start the bot:
cargo install remindee-bot remindee-bot --token <BOT TOKEN> --database <FILE>
Instead of flags you can use environment variables to specify the token and the database location:
export BOT_TOKEN=<BOT TOKEN> export REMINDEE_DB=<FILE> # default is to store in the user's data directory remindee-bot
-
Download the archive for your system architecture from the latest release page.
-
Unpack the archive:
- for Linux, you can run
tar xf remindee-bot-<version>-<architecture>.tar.gz
; - for macOS, you can use the default zip extractor or run
unzip remindee-bot-<version>-<architecture>.zip
; - for Windows, you can use the default zip extractor.
- for Linux, you can run
-
Navigate to the directory and start the bot:
cd remindee-bot-<version>-<architecture> ./remindee-bot --token <BOT TOKEN> --database <FILE>
-
Build the image from this repository:
docker build --tag remindee-bot 'https://github.com/magnickolas/remindee-bot.git#master'
-
Initialize and run a container from the built image:
docker run -d -v <LOCAL DATABASE DIRECTORY>:/data -e BOT_TOKEN=<BOT TOKEN> remindee-bot
See Docker's documentation for more.
-
Install Rust.
-
Clone the repository with Git:
git clone https://github.com/magnickolas/remindee-bot
-
Build the crate and start the bot:
cargo install --path remindee-bot remindee-bot --token <BOT TOKEN> --database <FILE>
Send /start
command to the bot and follow its instructions 🤖.
The formats descriptions with examples can be viewed at readthedocs or docs/index.rst.
You may also find it useful to refer to the pest grammar playground to try out some reminders and see how they are parsed (select reminder
at the bottom of the list of choices next to the second code block and play with it).