Spaces:
Sleeping
Sleeping
File size: 472 Bytes
002262c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/bash
# Launch script for IIS Log Analyzer
echo "๐ Starting IIS Log Analyzer..."
echo ""
# Check if dependencies are installed
if ! python -c "import streamlit" 2>/dev/null; then
echo "๐ฆ Installing dependencies..."
pip install -r requirements.txt
echo ""
fi
# Launch Streamlit app
echo "โ Launching web application..."
echo " URL: http://localhost:8501"
echo " Press Ctrl+C to stop"
echo ""
streamlit run app.py --server.maxUploadSize=1024
|