disable native mode by default in launch_app function

This commit is contained in:
Ross
2025-11-24 13:52:57 +00:00
parent 6a49f47a5b
commit 305e47ba8f
+1 -1
View File
@@ -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