feat: prepare all services for production deployment

Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-06 02:28:24 +00:00
parent b1953ea883
commit 9085e7a023
37 changed files with 668 additions and 13 deletions

View File

@@ -8,6 +8,10 @@ app.get('/health', (req, res) => {
res.json({ status: 'healthy', service: 'RoadView', version: '1.0.0' });
});
app.get('/api/health', (req, res) => {
res.json({ status: 'healthy', service: 'RoadView', version: '1.0.0' });
});
app.get('/', (req, res) => {
res.json({
name: 'RoadView',