Spaces:
Build error
Build error
File size: 205 Bytes
22c6426 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/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 '*'
|