rugmunchbot Installation ๐ข
Run your own instance (white-label or private team bot).
Prerequisitesโ
- A bot token from @BotFather
- A running RMI backend (the bot calls its APIs) โ see RMI deployment
Dockerโ
git clone https://git.rugmunch.io/RugMunchMedia/rugmunchbot.git
cd rugmunchbot
cp .env.example .env
# set TELEGRAM_BOT_TOKEN and RMI_BACKEND_URL
docker compose up -d --build
Verifyโ
Message your bot /start in Telegram. It should reply with the command menu.
Webhook vs pollingโ
- Polling (default): zero-config, fine for private instances.
- Webhook: set
WEBHOOK_URLโ required for high-volume public bots; lower latency.