Spaces:
Sleeping
Sleeping
File size: 403 Bytes
40f2bca dce0d90 | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash
# Start Flask in background
python flask_app.py &
# Wait a bit for Flask to start
sleep 2
# Start Streamlit on port 7860 with XSRF protection disabled (required for HF Spaces file uploads)
streamlit run streamlit_app.py --server.port 7860 --server.address 0.0.0.0 --server.headless true --browser.serverAddress 0.0.0.0 --browser.gatherUsageStats false --server.enableXsrfProtection false
|