movi, el script

This commit is contained in:
Marco Gallegos
2025-12-21 15:20:34 -06:00
parent 131ebcc0d3
commit 19ac02b259

11
start_bot.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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"