Initial commit

This commit is contained in:
2026-07-17 10:00:33 +01:00
commit 634809c6ca
16 changed files with 9694 additions and 0 deletions

15
scripts/start.cjs Normal file
View File

@@ -0,0 +1,15 @@
const { spawn } = require("child_process");
const electronPath = require("electron");
const env = { ...process.env };
delete env.ELECTRON_RUN_AS_NODE;
const electron = spawn(electronPath, ["."], {
stdio: "inherit",
env
});
electron.on("exit", (code) => {
process.exit(code ?? 0);
});