#!/bin/bash # ======================================= # START SCRIPT - Vocal Articulation System # For Docker / HuggingFace Spaces deployment # ======================================= echo "🚀 Starting Vocal Articulation Assessment System..." # Check Python version python --version # Install dependencies if needed if [ ! -d ".venv" ]; then echo "📦 Installing dependencies..." pip install -r requirements.txt fi # Set environment variables export PYTHONUNBUFFERED=1 export GRADIO_SERVER_NAME="0.0.0.0" export GRADIO_SERVER_PORT=7860 # Start application echo "✅ Starting Gradio interface..." python app.py