From 3bd144c88ec7f0702df521f25e8db7f3097bf40d Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 10 Mar 2026 19:23:40 -0700 Subject: [PATCH] Default PRODUCTION to true for system apps Co-Authored-By: Claude Opus 4.6 --- src/binary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binary.ts b/src/binary.ts index 5b75fe2..ce8707f 100644 --- a/src/binary.ts +++ b/src/binary.ts @@ -86,7 +86,7 @@ export async function spawn(dataDir: string, socketPath: string) { TRONBYT_UNIX_SOCKET: socketPath, DATA_DIR: dataDir, DB_DSN: join(dataDir, 'tronbyt.db'), - PRODUCTION: process.env.PRODUCTION ?? 'false', + PRODUCTION: process.env.PRODUCTION ?? 'true', SINGLE_USER_AUTO_LOGIN: process.env.SINGLE_USER_AUTO_LOGIN ?? 'true', SYSTEM_APPS_AUTO_REFRESH: process.env.SYSTEM_APPS_AUTO_REFRESH ?? 'true', },