There are 2 ways to run the bot: Docker (recommended) or locally.
- Docker
- Python (for development)
- Create two Telegram tokens from BotFather, for development and production
- Create a
.env
file and copy the template fromenv.sample
. Populate the respective values for production and development environments.
- Run
docker compose -f docker-compose.{environment}.yml up -d
- change {environment} to dev or prod
- For prod, if you have made any new changes to the code, you will need to build the image first and change the image name under the "telegram-app" service in the docker compose file. See Hosting for production for more info.
- If it's the first time setting up, follow the steps under Populating the database. Else, you can start testing out your bot.
- Run
docker stop container_name_or_id
- Make sure both services are running.
- Run
docker ps
- Copy the container name of the telegram bot service
- Make sure that
import.csv
file is already pre-populated with rows. Rundocker exec -it {container-name} python mass_import.py
- To add new people into the database, clear the import.csv and add in their data. This is to avoid duplicate key error (room for future improvement)
- Make sure that the mysql docker database service is running.
- Run
docker ps
- Copy the container name of the database service
- Run
docker exec -it {container-name} mysql -u root -p
. Enter the database password when prompted. - In
mysql
client, runUSE dragon_trainer;
(USE dragon_trainer_prod
for production) followed bySHOW TABLES;
. The tables should be properly configured if telegram-app service runs successfully.
For production, you will need to build the telegram bot docker image and push it to Docker Hub. docker-compose.prod.yml
then pulls this image. This version uses mraihandev/dracobot2-telegram-app
image. You may build and use your own image.
- Build the image:
docker build -t your-image-name .
- Create a Docker account if not yet created (https://hub.docker.com/)
- Login to Docker Hub:
docker login
- Tag your image:
docker tag your-image-name your-dockerhub-username/your-image-name:tag
- Push your image:
docker push your-dockerhub-username/your-image-name:tag
(Make sure to test that this image works by runningdocker-compose.prod.yml
with the new full image name before pushing) - In
docker-compose.prod.yml
, replace the image name undertelegram-app
service to youryour-dockerhub-username/your-image-name:tag
- You can then copy over the
docker-compose.yml
file to any production environments (make sure that the architecture [ARM, x64 etc.] works for your image. Usedocker inspect your-image-name
to identify the architecture). For Dragon & Trainer 2023, we host it on AWS EC2 instance with x64 architecture.
- Error unpickling conversationbot: delete
conversationbot
file in the root directory - If anything goes wrong with the bot, it could either be due to the db or telegram-app service. You may use the following command to restart the containers:
docker restart container_name_or_id
- You may view the docker logs for troubleshooting using
docker logs -f container_name_or_id
- dns error (see below)
ERROR: failed to solve: failed to fetch oauth token: Post "https://auth.docker.io/token": dial tcp: lookup auth.docker.io on [::1]:53: read udp [::1]:63799->[::1]:53: read: connection refused
4.1. run the following in your terminal
export DOCKER_BUILDKIT=0
export COMPOSE_DOCKER_CLI_BUILD=0
- Python (>= 3.8.10)
- Pip (>= 21.2.4)
- MariaDB (>= 10.3.9) (or MySQL)
- virtualenv (>= 20.8.1) (if setting up project in virtual environment)
-
Setup Virtual Environment
$ python -m venv venv
-
Activate Virtual Environment
$ source venv/bin/activate
-
Update pip to latest version
$ python -m pip install --upgrade pip
-
Repeat the above steps to set up the project in the virtual environment Run the following code to deactivate the virtual environment
$ deactivate
Note: Run all future commands after activating virtual environment to ensure consistencies
-
Install Python Dependencies
$ pip install -r requirements.txt
-
Create the environment file (make a copy of
env.sample
and rename it to.env
). Add the details for each environment variable.TELEGRAM_BOT_TOKEN=<put_your_telegram_bot_token_here>
-
Create database
$ python setup.py
-
Run the python telegram server
$ python main.py