CoolFace
Apppublic

MrDevCoder01/DSBackend

sourceHugging Facemitupdated 5mo agoView on Hugging Face
1likes
start_server.sh13 linesDownload Raw Back to root
1#!/bin/bash2 3# Navigate to the directory containing this script (optional but good practice)4cd "$(dirname "$0")"5 6echo "Starting Deepfake Detection Backend Server..."7 8# Activate the virtual environment9source venv/bin/activate10 11# Run the backend using the app.py file we created12python3 app.py13