Spaces:
Sleeping
Sleeping
File size: 247 Bytes
9d3e192 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Kill any running Streamlit processes
pkill -f streamlit
# Wait a moment for processes to terminate
sleep 1
# Activate virtual environment and run the app
source .venv/bin/activate
streamlit run app.py --server.fileWatcherType none |