fix: keep only project subdirectory files

This commit is contained in:
2026-03-05 17:22:34 +01:00
commit 0e1cb7cfe9
8 changed files with 959 additions and 0 deletions

6
server.js Normal file
View File

@@ -0,0 +1,6 @@
import express from 'express';
const app = express();
const PORT = Number(process.env.PORT || 8080);
app.use(express.static('public'));
app.get('/healthz', (_req, res) => res.json({ ok: true }));
app.listen(PORT, '0.0.0.0', () => console.log(`tetris-web listening on :${PORT}`));