#!/bin/bash # Install dependencies pip install -r requirements.txt # Run Django migrations python manage.py makemigrations python manage.py migrate # Run FastAPI app uvicorn fastapi_app:app --host 0.0.0.0 --port 8000 & # Run Gradio interface python gradio_interface.py & # Run tests pytest tests/