Run black and update docs for #457

pull/458/head
Simon Willison 2019-05-09 09:47:58 -07:00
rodzic b80b03ac9a
commit f825e20121
2 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -21,9 +21,7 @@ def publish_subcommand(publish):
help="Application name to use when building",
)
@click.option(
"--service",
default="",
help="Cloud Run service to deploy (or over-write)",
"--service", default="", help="Cloud Run service to deploy (or over-write)"
)
@click.option("--spatialite", is_flag=True, help="Enable SpatialLite extension")
def cloudrun(
@ -80,7 +78,7 @@ def publish_subcommand(publish):
check_call("gcloud builds submit --tag {}".format(image_id), shell=True)
check_call(
"gcloud beta run deploy --allow-unauthenticated --image {}{}".format(
image_id, " {}".format(service) if service else "",
image_id, " {}".format(service) if service else ""
),
shell=True,
)

Wyświetl plik

@ -18,6 +18,7 @@ Options:
--source_url TEXT Source URL for metadata
--about TEXT About label for metadata
--about_url TEXT About URL for metadata
-n, --name TEXT Application name to use when deploying
-n, --name TEXT Application name to use when building
--service TEXT Cloud Run service to deploy (or over-write)
--spatialite Enable SpatialLite extension
--help Show this message and exit.