const express = require('express'); const app = express(); const PORT = process.env.PORT || 3000; app.get('/', (req, res) => { res.send('Chat UI is running!'); }); app.listen(PORT, () => { console.log(`Chat UI listening on port ${PORT}`); });