odatalogparser / run.sh
pilotstuki's picture
Initial commit: IIS Log Performance Analyzer
002262c
raw
history blame contribute delete
472 Bytes
#!/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