From 4b89b8260b920459067d5ebfdfeb032bc03dcd67 Mon Sep 17 00:00:00 2001 From: Simon Young <40179067+Kastier1@users.noreply.github.com> Date: Fri, 3 Jan 2025 15:15:13 -0800 Subject: [PATCH] HOS-400: adding support for config (#4540) * HOS-400: adding support for config * ruff --------- Co-authored-by: simon --- reflex/reflex.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reflex/reflex.py b/reflex/reflex.py index e333bfbd1..22fcb9fb8 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -485,6 +485,11 @@ def deploy( "--token", help="token to use for auth", ), + config_path: Optional[str] = typer.Option( + None, + "--config", + help="path to the config file", + ), ): """Deploy the app to the Reflex hosting service.""" from reflex_cli.utils import dependency @@ -540,6 +545,7 @@ def deploy( loglevel=type(loglevel).INFO, # type: ignore token=token, project=project, + config_path=config_path, )