Initial commit: Gridseed WebGUI implementation

This commit is contained in:
Gemini Bot
2026-01-20 10:46:00 +00:00
commit ef7dcecea2
13 changed files with 806 additions and 0 deletions

19
start_gui.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Ensure we are in the script directory
cd "$(dirname "$0")"
# Check if virtual environment exists
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
else
source venv/bin/activate
fi
echo "Starting Gridseed WebGUI..."
# Run with gunicorn for production or python directly for dev.
# Using python for simplicity as requested on Pi 1
python app.py