Telegram bot written in Lua
etc | ||
src | ||
.gitignore | ||
.gitmodules | ||
bot.rc | ||
config.lua | ||
init.lua | ||
LICENSE | ||
readme.org | ||
start.sh |
Computer bot
Original is here and on my private server. Mirrors can update irregularly.
This is a bot for Telegram. It haven't got much possibilities, but this code can be used in other bots.
Bot can use locale of Telegram client (unlike much bots) and use it or fallback to English.
Bot uses an OOP-style of Lua as described on Wikipedia.
Maybe I will rewrite bot's core to C but here already so many Lua code.
Installation
Alpine linux, root:
- Enable community repo (described in wiki)
- Install lua and tools:
apk add doas git lua5.3-dev luarocks musl-dev gcc openssl-dev
- Install LuaSec for https requests:
luarocks-5.3 install luasec
- Create user:
adduser user
setup it (add to doas) and login to this user - Clone repo:
git clone --recursive https://gitdab.com/er2/comp-tg
and entercd comp-tg
- Change token and owner in config.lua
- Add service
doas cp bot.rc /etc/init.d/mybot && doas chmod +x /etc/init.d/mybot
- Configure it
doas vi /etc/init.d/mybot
(change user) - Start it
doas service mybot start