|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
echo "π Starting Kronos Web UI..."
|
|
|
echo "================================"
|
|
|
|
|
|
|
|
|
if ! command -v python3 &> /dev/null; then
|
|
|
echo "β Python3 not installed, please install Python3 first"
|
|
|
exit 1
|
|
|
fi
|
|
|
|
|
|
|
|
|
if [ ! -f "app.py" ]; then
|
|
|
echo "β Please run this script in the webui directory"
|
|
|
exit 1
|
|
|
fi
|
|
|
|
|
|
|
|
|
echo "π¦ Checking dependencies..."
|
|
|
if ! python3 -c "import flask, flask_cors, pandas, numpy, plotly" &> /dev/null; then
|
|
|
echo "β οΈ Missing dependencies, installing..."
|
|
|
pip3 install -r requirements.txt
|
|
|
if [ $? -ne 0 ]; then
|
|
|
echo "β Dependencies installation failed"
|
|
|
exit 1
|
|
|
fi
|
|
|
echo "β
Dependencies installation completed"
|
|
|
else
|
|
|
echo "β
All dependencies installed"
|
|
|
fi
|
|
|
|
|
|
|
|
|
echo "π Starting Web server..."
|
|
|
echo "Access URL: http://localhost:7070"
|
|
|
echo "Press Ctrl+C to stop server"
|
|
|
echo ""
|
|
|
|
|
|
python3 app.py
|
|
|
|