← Back
#!/bin/bash
# AlphaPulseXP Bot Runner

cd /home/app/alphapulsexp

# Load environment
export $(cat .env | xargs)

# Check if already running
if pgrep -f "python3 bot.py" > /dev/null; then
    echo "Bot is already running"
    exit 1
fi

# Run bot
python3 bot.py

📜 Git History

a09f02fchore: initial commit — version control setup5 weeks ago
Show last diff
Loading...