Files
talia_bot/start_bot.sh
Marco Gallegos 19ac02b259 movi, el script
2025-12-21 15:20:34 -06:00

12 lines
297 B
Bash
Executable File

#!/bin/bash
# Script to start the Talia Bot with correct PYTHONPATH
# Get the directory of the script
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Set PYTHONPATH to include the parent directory
export PYTHONPATH="$PYTHONPATH:$DIR/.."
# Run the bot
python3 "$DIR/talia_bot/main.py"