iching-broker-level2/dist/backend/server.js
Christopher Hase 628855b5d9
All checks were successful
ci / build (push) Successful in 1m11s
add config.json again
2025-04-17 14:46:32 +02:00

15 lines
532 B
JavaScript

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}`);
});