File size: 206 Bytes
3d3f535 |
1 2 3 4 5 6 |
#!/bin/bash
# Set Chrome as the default browser for this session
export BROWSER="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
# Run Streamlit with the provided arguments
streamlit run "$@"
|