#!/bin/bash
echo "🚀 Starting GameUp API Server in the background..."
nohup python3 games_server.py > server.log 2>&1 &
echo "✅ Server is now running!"
echo "📄 You can check the logs anytime using: cat server.log"
echo "🌐 Go to: http://gameup.ma:8001/admin (or use your server IP)"
