fix(#85): Run expanded local discovery and continue with next actionable task
Some checks are pending
Docker Test / test (push) Waiting to run

This commit is contained in:
OpenClaw 2026-03-12 17:41:37 +00:00
parent 423ac779da
commit 9a26ba908a
11 changed files with 347 additions and 9 deletions

16
backend/test-server.js Normal file
View file

@ -0,0 +1,16 @@
import express from 'express';
import { createServer } from 'http';
// Simple test to see if we can get a response
const app = express();
app.use(express.json());
app.get('/health', (_req, res) => {
console.log('Health endpoint hit');
res.json({ status: 'ok' });
});
const server = createServer(app);
server.listen(3001, () => {
console.log('Test server listening on port 3001');
});