fix: Disable Streamlit file watcher to avoid inotify limit
All checks were successful
armco-org/visual-search-engine/pipeline/head This commit looks good

This commit is contained in:
2026-01-03 15:16:14 +05:30
parent 91dfb06128
commit 376ca54b2d

View File

@@ -5,8 +5,8 @@
python run_api_server.py &
API_PID=$!
# Start Streamlit in background
streamlit run main_streamlit.py --server.port=3000 --server.address=0.0.0.0 &
# Start Streamlit in background (disable file watcher for production)
streamlit run main_streamlit.py --server.port=3000 --server.address=0.0.0.0 --server.fileWatcherType=none &
STL_PID=$!
# Wait for either to exit