Telegram bot to remind you of friends' birthdays
- Install Docker, Docker Compose and just
- Clone this repository
git clone https://github.com/Desiders/birthday_reminder.git - Copy
.env.exampleto.envand fill it with your data
Before running the bot you need to run migrations. To do this run the following command:
just migration-dockeror without just:
docker compose --profile migration up --buildTo start the bot run the following command:
just run-dockeror without just:
docker compose --profile bot up --buildTo stop the bot run the following command:
just stop-dockeror without just:
docker compose stop bot postgres postgres_migrationCheck other commands in the justfile to run tests, linters, etc.
just help