From 305e47ba8f1106f9ad240f5933a2cf236b8089d8 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 24 Nov 2025 13:52:57 +0000 Subject: [PATCH] disable native mode by default in launch_app function --- nice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nice.py b/nice.py index d2052a9..95867aa 100644 --- a/nice.py +++ b/nice.py @@ -703,7 +703,7 @@ def main_page(): def launch_app( work_dir: Path = typer.Option(WORK_DIR, help="Working directory"), nng: bool = typer.Option(True, help="Use nng"), - native_mode: bool = typer.Option(True, help="Use native mode"), + native_mode: bool = typer.Option(False, help="Use native mode"), debug: bool = typer.Option(False, help="Debug mode") ): global WORK_DIR, EXPORT_PATH, PROCESS_PATH, ANON_PATH, DEBUG