Configure Playwright for headless CI and add Gitea workflow with container support
Tests / frontend-test (pull_request) Has been cancelled
Tests / e2e-test (pull_request) Has been cancelled
Tests / backend-test (pull_request) Has been cancelled

This commit is contained in:
(jenkins)
2026-03-17 00:29:39 +00:00
parent 4326109722
commit bd9e92f304
14 changed files with 761 additions and 88 deletions
+7 -3
View File
@@ -132,6 +132,10 @@ app.get('/api/health', (req, res) => {
res.json({ status: 'ok', timestamp: new Date().toISOString() });
});
app.listen(PORT, '0.0.0.0', () => {
console.log(`Line of Sight Backend running on port ${PORT}`);
});
if (require.main === module) {
app.listen(PORT, '0.0.0.0', () => {
console.log(`Line of Sight Backend running on port ${PORT}`);
});
}
module.exports = { app, calculateDestination };