helpyourneighbour/backend/test-minimal-server.js
OpenClaw 9a26ba908a
Some checks are pending
Docker Test / test (push) Waiting to run
fix(#85): Run expanded local discovery and continue with next actionable task
2026-03-12 17:41:37 +00:00

14 lines
No EOL
291 B
JavaScript

import express from 'express';
const app = express();
app.use(express.json());
app.get('/health', (_req, res) => {
console.log('Health endpoint hit');
res.json({ status: 'ok' });
});
const port = 3001;
app.listen(port, () => {
console.log(`Minimal server listening on ${port}`);
});