GCode Feld

This commit is contained in:
chk
2026-03-09 20:22:16 +01:00
parent f2a675a652
commit 66bce53518
2 changed files with 15 additions and 5 deletions

View File

@@ -1,13 +1,11 @@
module.exports = {
fluidnc: {
host: "fluidncred.local",
port: 80,
host: process.env.FluidNcHost || "fluidncred.local",
port: Number(process.env.FluidNcPort) || 80,
reconnectDelay: 30000
},
server: {
port: 3000
port: Number(process.env.PORT) || 3000
}
};