feat: Add Docker containerization, production serving, and Gitea CI/CD workflow.
Some checks failed
Build and Deploy / build (push) Failing after 2m44s

This commit is contained in:
2025-12-14 22:48:41 +01:00
parent 65824a52d9
commit 6f3c773dfd
5 changed files with 99 additions and 4 deletions

View File

@@ -36,6 +36,13 @@ app.get('/api/health', (_req: Request, res: Response) => {
res.json({ status: 'ok', message: 'Server is running' });
});
// Serve Frontend in Production
if (process.env.NODE_ENV === 'production') {
const distPath = path.resolve(process.cwd(), 'dist');
app.use(express.static(distPath));
}
app.post('/api/cards/cache', async (req: Request, res: Response) => {
try {
const { cards } = req.body;
@@ -201,6 +208,19 @@ io.on('connection', (socket) => {
});
});
// Handle Client-Side Routing (Catch-All) - Must be last
if (process.env.NODE_ENV === 'production') {
app.get('*', (_req: Request, res: Response) => {
// Check if request is for API
if (_req.path.startsWith('/api') || _req.path.startsWith('/socket.io')) {
return res.status(404).json({ error: 'Not found' });
}
const distPath = path.resolve(process.cwd(), 'dist');
res.sendFile(path.join(distPath, 'index.html'));
});
}
import os from 'os';
httpServer.listen(Number(PORT), '0.0.0.0', () => {