Spaces:
Sleeping
Sleeping
File size: 296 Bytes
c9caccb | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
# Navigate to the directory containing this script (optional but good practice)
cd "$(dirname "$0")"
echo "Starting Deepfake Detection Backend Server..."
# Activate the virtual environment
source venv/bin/activate
# Run the backend using the app.py file we created
python3 app.py
|