#!/usr/bin/env bash
# Start the Telegram bot process (polling or webhook, per .env BOT_MODE).
set -euo pipefail
cd "$(dirname "$0")/.."
source .venv/bin/activate
exec python bot/main.py
