Initial commit - WOL Manager Flask application

- Added containerized Flask web application for Wake-on-LAN management
- Implemented computer management with file-based configuration
- Added network scanning and device discovery functionality
- Included Docker setup with privileged networking for WOL operations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-04 16:19:09 +03:00
commit f7b0c28d1a
8 changed files with 1028 additions and 0 deletions

13
start.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
echo "🚀 Pornesc Wake-on-LAN Manager..."
# Creează directorul pentru date
mkdir -p data
# Pornește containerele
docker-compose up -d
echo "✅ Aplicația rulează pe http://IP_LXC:8088"
echo "📊 Vezi logs cu: docker-compose logs -f"
echo "⏹️ Oprește cu: docker-compose down"