From fc450e5024d80a8189f35be75cfb8feddfcceae2 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 15 Mar 2026 07:57:58 -0700 Subject: [PATCH] Hide console window for server binary on Windows --- backend/build_binary.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/build_binary.py b/backend/build_binary.py index cc9a85b0..95f1b5f1 100644 --- a/backend/build_binary.py +++ b/backend/build_binary.py @@ -34,6 +34,7 @@ def build_server(cuda=False): args = [ 'server.py', # Use server.py as entry point instead of main.py '--onefile', + '--noconsole', # No visible console window on Windows '--name', binary_name, ]