Shakespeare-AI / restart_app.sh
danielrosehill's picture
Initial commit with Git LFS for images
9d3e192 unverified
raw
history blame contribute delete
247 Bytes
#!/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