Phase8
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 9s
CI / Go — edge-gateway build (push) Successful in 17s

This commit is contained in:
smueller
2026-06-26 13:33:03 +02:00
parent ab21f53cdd
commit b335f6a497
39 changed files with 1477 additions and 20 deletions

View File

@@ -57,6 +57,8 @@ async function main(): Promise<void> {
maxServers: 10,
maxRamMb: 16384,
platformRamMb: 2048,
portRangeStart: 25565,
portRangeEnd: 25664,
enrollmentTokenHash: hashToken(DEV_NODE_ENROLLMENT_TOKEN),
},
update: {
@@ -64,6 +66,8 @@ async function main(): Promise<void> {
hostname: 'localhost',
maxRamMb: 16384,
platformRamMb: 2048,
portRangeStart: 25565,
portRangeEnd: 25664,
enrollmentTokenHash: hashToken(DEV_NODE_ENROLLMENT_TOKEN),
},
});

View File

@@ -17,6 +17,7 @@ export type {
BackupSchedule,
WorldUpload,
InstalledAddon,
ServerDnsRecord,
GameNode,
GameNodeHeartbeat,
ServerStartQueueEntry,