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

This commit is contained in:
smueller
2026-06-26 13:20:55 +02:00
parent 49a98ee31d
commit ab21f53cdd
86 changed files with 1207 additions and 63 deletions

View File

@@ -29,9 +29,21 @@ async function main(): Promise<void> {
maxRamMb: 2048,
maxCpuCores: 1,
maxStorageMb: 5120,
maxServersPerUser: 3,
idleTimeoutMinutes: 10,
idleGraceAfterStartMinutes: 2,
idleCountdownSeconds: 60,
queuePriority: 0,
monthlyCreditGrant: 5000,
},
update: {
isActive: true,
maxServersPerUser: 3,
idleTimeoutMinutes: 10,
idleGraceAfterStartMinutes: 2,
idleCountdownSeconds: 60,
queuePriority: 0,
monthlyCreditGrant: 5000,
},
});

View File

@@ -20,6 +20,9 @@ export type {
GameNode,
GameNodeHeartbeat,
ServerStartQueueEntry,
CreditWallet,
CreditTransaction,
UsageRecord,
Plan,
FeatureFlag,
SystemSetting,