disable native mode by default in launch_app function
This commit is contained in:
@@ -703,7 +703,7 @@ def main_page():
|
|||||||
def launch_app(
|
def launch_app(
|
||||||
work_dir: Path = typer.Option(WORK_DIR, help="Working directory"),
|
work_dir: Path = typer.Option(WORK_DIR, help="Working directory"),
|
||||||
nng: bool = typer.Option(True, help="Use nng"),
|
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")
|
debug: bool = typer.Option(False, help="Debug mode")
|
||||||
):
|
):
|
||||||
global WORK_DIR, EXPORT_PATH, PROCESS_PATH, ANON_PATH, DEBUG
|
global WORK_DIR, EXPORT_PATH, PROCESS_PATH, ANON_PATH, DEBUG
|
||||||
|
|||||||
Reference in New Issue
Block a user