diff --git a/reflex/reflex.py b/reflex/reflex.py index 20866941f..cf29e199f 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -484,6 +484,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 @@ -539,6 +544,7 @@ def deploy( loglevel=type(loglevel).INFO, # type: ignore token=token, project=project, + config_path=config_path )