openwebui-demo / start.sh
Temp User
Initial setup for Open WebUI on Hugging Face Space
22c6426
#!/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 '*'