little change man

This commit is contained in:
simon 2024-11-21 17:01:47 -08:00
parent 9612bd288c
commit a623a9dee1

View File

@ -599,12 +599,7 @@ def deploy(
hosting_cli.deploy( hosting_cli.deploy(
app_name=app_name, app_name=app_name,
export_fn=lambda zip_dest_dir, export_fn=lambda zip_dest_dir, api_url, deploy_url, frontend, backend, zipping: export_utils.export(
api_url,
deploy_url,
frontend,
backend,
zipping: export_utils.export(
zip_dest_dir=zip_dest_dir, zip_dest_dir=zip_dest_dir,
api_url=api_url, api_url=api_url,
deploy_url=deploy_url, deploy_url=deploy_url,
@ -673,8 +668,7 @@ def deployv2(
project: Optional[str] = typer.Option( project: Optional[str] = typer.Option(
None, None,
"--project", "--project",
help="project to deploy to", help="project id to deploy to",
hidden=True,
), ),
token: Optional[str] = typer.Option( token: Optional[str] = typer.Option(
None, None,
@ -706,12 +700,7 @@ def deployv2(
hosting_cli.deploy( hosting_cli.deploy(
app_name=app_name, app_name=app_name,
export_fn=lambda zip_dest_dir, export_fn=lambda zip_dest_dir, api_url, deploy_url, frontend, backend, zipping: export_utils.export(
api_url,
deploy_url,
frontend,
backend,
zipping: export_utils.export(
zip_dest_dir=zip_dest_dir, zip_dest_dir=zip_dest_dir,
api_url=api_url, api_url=api_url,
deploy_url=deploy_url, deploy_url=deploy_url,