feat: integrate 5 charity modules + scrollable desktop + dock autohide

This commit is contained in:
Antigravity AI
2026-06-03 14:00:29 +08:00
commit f1f717cbcb
50 changed files with 10166 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
const express = require('express');
const cors = require('cors');
const path = require('path');
const app = express();
const PORT = process.env.PORT || 3000;
app.use(cors());
app.use(express.json());
app.use(express.static(path.join(__dirname, 'dist')));
app.get('/health', (_req, res) => {
res.json({ status: 'healthy', service: 'app', version: '1.3.0' });
});
app.get('*', (_req, res) => {
res.sendFile(path.join(__dirname, 'dist', 'index.html'));
});
app.listen(PORT, () => {
console.log(JSON.stringify({ ts: new Date().toISOString(), level: 'info', service: 'app', msg: `running on port ${PORT}` }));
});