#!/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