diff --git a/reflex/reflex.py b/reflex/reflex.py index b0f4ccd91..d651561ea 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -480,6 +480,11 @@ def deploy( "--project", help="project id to deploy to", ), + project_name: Optional[str] = typer.Option( + None, + "--project-name", + help="The name of the project to deploy under.", + ), token: Optional[str] = typer.Option( None, "--token", @@ -547,6 +552,8 @@ def deploy( loglevel=type(loglevel).INFO, # type: ignore token=token, project=project, + config_path=config_path, + project_name=project_name, **extra, )