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:
chk
2026-06-14 10:12:41 +02:00
commit b68bdfa9b4
20 changed files with 6085 additions and 0 deletions

10
index.js Normal file
View 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})`
);
});