Files
boc/vims-backend/server.js
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

28 lines
844 B
JavaScript

const express = require('express');
const app = express();
const PORT = process.env.PORT || 3450;
app.get('/health', (req, res) => {
res.json({ status: 'ok', service: 'vims', version: '1.0.0' });
});
app.get('/api/v1/reality-alerts/product/info', (req, res) => {
res.json({
success: true,
product: {
name: 'Reality Alerts™',
tagline: 'Transform verified real-world observations into actionable intelligence',
description: 'Reality Alerts™ enables anyone to instantly capture and submit verified observations of real-world problems.',
positioning: {
parent: 'QUIXZOOM',
parentTagline: 'The world\'s infrastructure intelligence network',
role: 'Real-time observation engine'
}
}
});
});
app.listen(PORT, () => {
console.log(`VIMS API running on port ${PORT}`);
});