- The "Bulls and Cows" game
- Pair of the day, marriages
- Roleplay, duels, and cakegiving (try
/cakecommand to figure out what is it) - Genshin pull simulator (
/wish,/inv) /fimplementation- Advanced
/weatherusingwttr.inservice - Sticker with text generation on new group member
- Various group settings such as forbidden commands, custom greeting stickers and more
- Localization
- Simple bootstrap
- Prometheus metrics (available on
/prometheusendpoint) and advanced error logging (directly to your telegram group or channel, with logs, caused JSON and everything you need!) - Automatic database cleanup - forget about inactive users
- Advanced feedback system - receive feedback from you users, answer anonymously, track actions
- Blacklist for users and groups
- Admin management
- Tracking (Know in what groups are your users in)
/broadcastsystem- Low memory consumption - we had this bot running with 140000 users and 2k messages / sec on
-Xmx128Mfor the whole month! - Cross-platform (it's written in java)
- The
/helpcommand shows only those commands that the user (standard user/admin/main admin) can run
Java development kit 21+
First, you need to build the jar entering the following commands:
- MacOS/Linux:
./gradlew shadowJar - Windows:
gradlew.bat shadowJar
The "fat jar" with all dependencies will be stored in /build/libs directory
Configuration is done by setting environment variables.
Look for bot and datasources.default section in the application.yml file to
get info about environment variables you need
Also look at the permitted variables list in the Main Class and Micronaut configuration reference
- To disable banner, run with
-DdisableBanner - To print logs in json format (useful for log collecting tools like ELK/Loki), run with
-DjsonLogs
By default, bot connects to Postgresql database named lastkatkabot running on localhost:5432
You can set the database address by changing DBHOST, DBPORT and DBNAME environment variables.
For database authorization, use DBUSER and DBPASS environment variables.
Default login:password is lastkatkabot:sa
java -jar build/libs/lastkatkabot-version.jar
Logs are redirected to stdin and stderr
- aNNiMON's tgbots-module official telegram library wrapper
- Micronaut framework for DI, IoC and ORM
- Logback classic for logging