refactor: Migrate bot core and modules from talia_bot to bot directory, update start_bot.sh and Dockerfile, and modify README.md.

This commit is contained in:
Marco Gallegos
2025-12-21 18:00:31 -06:00
parent 6e1a2f0102
commit 13141d6ed3
38 changed files with 112 additions and 86 deletions

View File

@@ -4,8 +4,8 @@
# Get the directory of the script
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Set PYTHONPATH to include the parent directory
export PYTHONPATH="$PYTHONPATH:$DIR/.."
# Ensure the project root is on PYTHONPATH so absolute imports resolve
export PYTHONPATH="$DIR:${PYTHONPATH}"
# Run the bot
python3 "$DIR/talia_bot/main.py"
# Run the bot using the package entrypoint
python3 -m bot.main