| 📚 Navigation: 🏠 Home | 📖 Docs | 🏥 Health Monitoring | 📊 Dashboard | ⚙️ Features |
Simple starter scripts for the Health Dashboard.
Double-click on:
start-dashboard.bat
Or in PowerShell/CMD:
.\start-dashboard.bat
chmod +x start-dashboard.sh # Make executable (once)
./start-dashboard.sh
If venv doesn’t exist yet:
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
If you don’t want to use the scripts:
cd C:\Artificial-Intelligent\Crawllama
venv\Scripts\activate
python health-dashboard.py
cd /path/to/Crawllama
source venv/bin/activate
python health-dashboard.py
python health-dashboard.py
python test-dash-simple.py
# Recreate venv
python -m venv venv
# Windows
venv\Scripts\activate
# Linux/Mac
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
Windows/macOS:
Linux:
# Ubuntu/Debian
sudo apt-get install python3-tk
# Fedora
sudo dnf install python3-tkinter
# Arch
sudo pacman -S tk
# Debug mode
python health-dashboard.py --verbose
# Or check dependencies
# Windows (PowerShell)
pip show pytest
# Linux/Mac
pip list | grep pytest
# Test tkinter
python -c "import tkinter; print('tkinter OK')"
# Windows (PowerShell)
Get-ChildItem tests\
# Check if test_*.py files exist
Get-ChildItem tests\test_*.py
# Linux/Mac
ls tests/
ls tests/test_*.py
The dashboard shows:
tests/ folderThe dashboard automatically uses a VS Code-inspired dark theme:
After git pull:
# Windows
.\start-dashboard.bat
# Linux/Mac
./start-dashboard.sh
The scripts automatically activate the venv!
start-dashboard.bat)# Remove old/broken tests
python cleanup_old_tests.py
HEALTH_DASHBOARD.mdcore/health/TROUBLESHOOTING.mdTEST_CLEANUP_RECOMMENDATIONS.mdAfter project setup:
pip install pytest)Everything green? Then you’re ready! 🎉