#!/bin/bash set -e cd /app/backend # Initialize database and migrations python -m open_webui.env # Start the application uvicorn open_webui.main:app --host 0.0.0.0 --port 7860 --forwarded-allow-ips '*'