#!/bin/bash
cd "$(dirname "$0")"
# Ouvre le navigateur après 3 secondes (le temps que Streamlit démarre)
sleep 3 && open "http://localhost:8501" &
streamlit run app_sportdata.py
