Spaces:
Sleeping
Sleeping
File size: 491 Bytes
7d55822 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#!/bin/bash
# Kill any running Python processes
pkill -9 python3
# Wait a moment to ensure ports are freed
sleep 1
# Create virtual environment if it doesn't exist
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python3 -m venv venv
fi
# Activate virtual environment
source venv/bin/activate
# Install/update dependencies
echo "Installing/updating dependencies..."
pip install -r requirements.txt
# Run the app
echo "Starting the application..."
python3 app.py
|