mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 09:37:52 -05:00
Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
30 lines
745 B
JavaScript
30 lines
745 B
JavaScript
const express = require('express');
|
|
const app = express();
|
|
const PORT = process.env.PORT || 3000;
|
|
|
|
app.use(express.json());
|
|
|
|
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',
|
|
description: 'Creative Suite - Design, Video, AI Generation',
|
|
features: [
|
|
'Canva-like design tools',
|
|
'Adobe-style editing',
|
|
'AI image generation',
|
|
'Video creation (Veo3)',
|
|
'YouTube integration',
|
|
],
|
|
});
|
|
});
|
|
|
|
app.listen(PORT, () => console.log('RoadView running on port ' + PORT));
|