feat(ui): add type filter toggles

This commit is contained in:
2026-02-18 23:13:28 -08:00
commit a4cff9894c
14457 changed files with 2204835 additions and 0 deletions

20
server/index.ts Normal file
View File

@@ -0,0 +1,20 @@
import express from 'express';
import cors from 'cors';
const app = express();
const PORT = 3001;
// CORS middleware for frontend communication
app.use(cors({
origin: 'http://localhost:3000',
credentials: true,
}));
// Health check endpoint
app.get('/api/health', (req, res) => {
res.json({ status: 'ok' });
});
app.listen(PORT, () => {
console.log(`Server running on http://localhost:${PORT}`);
});