Slash / start.sh
ND06-25's picture
Codex PR
be5f84f
raw
history blame
438 Bytes
#!/bin/bash
echo "Book Summarizer - Startup"
echo "========================="
if ! command -v python3 &> /dev/null; then
echo "Python 3 is not installed or not in PATH."
exit 1
fi
echo "Installing dependencies (if needed)..."
pip3 install -r requirements.txt || {
echo "Failed to install dependencies."
exit 1
}
echo "Launching Streamlit..."
python3 -m streamlit run app.py --server.port 8501 --server.address 0.0.0.0