Skip to content

Commit

Permalink
HOS-400: adding support for config (#4540)
Browse files Browse the repository at this point in the history
* HOS-400: adding support for config

* ruff

---------

Co-authored-by: simon <simon@reflex.dev>
  • Loading branch information
Kastier1 and simon authored Jan 3, 2025
1 parent 879dcbd commit 4b89b82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions reflex/reflex.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -540,6 +545,7 @@ def deploy(
loglevel=type(loglevel).INFO, # type: ignore
token=token,
project=project,
config_path=config_path,
)


Expand Down

0 comments on commit 4b89b82

Please sign in to comment.