#!/bin/bash # Discord Fishbowl - Main Application echo "🐠 Starting Discord Fishbowl..." # Activate virtual environment source "/home/matt/discord-fishbowl/venv/bin/activate" # Set Python path export PYTHONPATH="/home/matt/discord-fishbowl:$PYTHONPATH" # Load environment variables if [ -f "/home/matt/discord-fishbowl/.env" ]; then export $(cat "/home/matt/discord-fishbowl/.env" | xargs) fi # Start the application python -m src.main "$@"