Spaces:
Running
Running
File size: 274 Bytes
598f5cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"
# Activate venv (create if missing)
if [ ! -d ".venv" ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
# Make imports work and launch the UI
export PYTHONPATH="$(pwd)"
python -m streamlit run app/ui_streamlit.py
|