iching-broker-level2/dist/backend/server.js

16 lines
532 B
JavaScript
Raw Normal View History

2025-04-17 12:46:32 +00:00
import express from 'express';
import cors from 'cors';
import { executeCommand } from './broker.js';
const app = express();
const port = 8090;
app.use(cors());
app.post('/iching/api/command', (req, res) => {
//TODO no logging from inside this method???
console.log(`Backend-Server: receiving POST to /iching/api/command`);
executeCommand();
res.status(200).send('Backend-Server: Broker was called\n');
});
app.listen(port, '0.0.0.0', () => {
console.log(`Backend-Server running on http://0.0.0.0:${port}`);
});