#!/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