formatting

This commit is contained in:
simon 2024-11-05 18:38:19 -08:00
parent a9f068efed
commit 8084a6d140

View File

@ -598,6 +598,7 @@ def deploy(
loglevel=loglevel.subprocess_level(),
)
@cli.command()
def deployv2(
app_name: str = typer.Option(
@ -656,11 +657,11 @@ def deployv2(
):
"""Deploy the app to the Reflex hosting service."""
from reflex_cli.v2 import cli as hosting_cli
from reflex.utils import prerequisites
from reflex.utils import export as export_utils
from reflex_cli.v2.utils import dependency
from reflex.utils import export as export_utils
from reflex.utils import prerequisites
# Set the log level.
console.set_log_level(loglevel)
@ -676,7 +677,12 @@ def deployv2(
hosting_cli.deploy(
app_name=app_name,
export_fn=lambda zip_dest_dir, api_url, deploy_url, frontend, backend, zipping: export_utils.export(
export_fn=lambda zip_dest_dir,
api_url,
deploy_url,
frontend,
backend,
zipping: export_utils.export(
zip_dest_dir=zip_dest_dir,
api_url=api_url,
deploy_url=deploy_url,
@ -696,6 +702,7 @@ def deployv2(
project=project,
)
cli.add_typer(db_cli, name="db", help="Subcommands for managing the database schema.")
cli.add_typer(script_cli, name="script", help="Subcommands running helper scripts.")
cli.add_typer(