Spaces:
Sleeping
Sleeping
| # 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 | |