#!/bin/bash echo "🚀 DĂ©marrage d'AudiOhm Web avec UI OptimisĂ©e..." cd /opt/audiOhm/backend # VĂ©rifier si uvicorn est installĂ© if ! python3 -c "import uvicorn" 2>/dev/null; then echo "❌ Uvicorn n'est pas installĂ©. Installation..." pip install uvicorn fastapi python-multipart fi # CrĂ©er les dossiers nĂ©cessaires mkdir -p app/static/css mkdir -p app/static/js mkdir -p app/static/img echo "✅ Fichiers CSS et JS optimisĂ©s en place!" echo "" echo "🌐 Serveur dĂ©marrĂ© sur: http://localhost:8000" echo "" echo "Appuyez sur Ctrl+C pour arrĂȘter" echo "" # DĂ©marrer le serveur python3 -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000