Initial commit - Shopfloor Dashboard

- Node.js Express server with MySQL integration
- Real-time event dashboard with live updates
- GE Aerospace branding and design
- Auto-refresh every 10 seconds (AJAX)
- Shows current and upcoming events (48 hour window)
- Connection status monitoring
- Optimized for TV display

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-10-21 16:17:45 -04:00
commit 6a9bb8c7a4
11 changed files with 2760 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "shopfloor-dashboard",
"version": "1.0.0",
"description": "GE Aerospace Shopfloor Events Dashboard",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": ["dashboard", "events", "notifications"],
"author": "GE Aerospace - West Jefferson",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"mysql2": "^3.6.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}