Initiales Projekt-Skelett appRobotFileservice
Ausgelagertes Programm-/File-Handling (vormals GCode.receiveFC im appRobotDriver, ToDo_4 / ToDo_6b). Express-Service mit .gcode + .json-Storage, aktivem Programm + Cursor, Teaching (FPoint) und Playback. Speicherung in Grad, driver-nativ (Radian) zum Driver. Konzept/API unter doc/draft_filehandeling*.md. Tests: jest (13 gruen). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
10
index.js
Normal file
10
index.js
Normal file
@@ -0,0 +1,10 @@
|
||||
// Einstiegspunkt: startet den HTTP-Service.
|
||||
const { createApp } = require('./src/server');
|
||||
const cfg = require('./src/config');
|
||||
|
||||
const app = createApp();
|
||||
app.listen(cfg.port, () => {
|
||||
console.log(
|
||||
`appRobotFileservice läuft auf http://localhost:${cfg.port} (Storage: ${cfg.storageDir})`
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user