#!/bin/bash

cd "$HOME/public_html/telegram_shop_bot" || exit 1

while [ ! -f STOP_BOT ]; do
    "$HOME/miniconda3/bin/python" main.py
    EXIT_CODE=$?

    if [ -f STOP_BOT ]; then
        break
    fi

    echo "$(date) - Bot stopped with code $EXIT_CODE; restarting in 5 seconds..."
    sleep 5
done
