Spaces:
Sleeping
Sleeping
File size: 443 Bytes
2197ab7 5fe3652 2197ab7 5fe3652 2197ab7 5fe3652 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Add the project root to PYTHONPATH
export PYTHONPATH="/home/jelle/code/fabric_to_espanso:$PYTHONPATH"
# Create a log directory if it doesn't exist
LOG_DIR="/home/jelle/code/fabric_to_espanso/logs"
mkdir -p "$LOG_DIR"
LOG_FILE="$LOG_DIR/streamlit.log"
# Run the streamlit app
echo "Starting Streamlit app..."
/home/jelle/code/fabric_to_espanso/.venv/bin/streamlit run ~/code/fabric_to_espanso/src/search_qdrant/streamlit_app.py |