const express = require('express'); const app = express(); const PORT = process.env.PORT || 8080; app.use(express.json()); app.get('/hello', (req, res) => { res.json({ message: 'Hello from git-kalpasi!' }); }); app.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() }); }); app.get('/', (req, res) => { res.json({ app: 'git-kalpasi', version: '1.0.0' }); }); app.listen(PORT, () => { console.log(`Server running on port ${PORT}`); });