mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 18:45:13 +00:00
51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
NAME
|
|
gcloud beta app browse - open the current app in a web browser
|
|
|
|
SYNOPSIS
|
|
gcloud beta app browse [--no-launch-browser]
|
|
[--service=SERVICE, -s SERVICE] [--version=VERSION, -v VERSION]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
(BETA) Open the current app in a web browser.
|
|
|
|
EXAMPLES
|
|
To open the default service, run:
|
|
|
|
$ gcloud beta app browse
|
|
|
|
To open a specific service, run:
|
|
|
|
$ gcloud beta app browse --service="myService"
|
|
|
|
To open a specific version, run:
|
|
|
|
$ gcloud beta app browse --service="myService" --version="v1"
|
|
|
|
FLAGS
|
|
--launch-browser
|
|
Launch a browser if possible. When disabled, only displays the URL.
|
|
Enabled by default, use --no-launch-browser to disable.
|
|
|
|
--service=SERVICE, -s SERVICE
|
|
The service that should be opened. If not specified, use the default
|
|
service. May be used in conjunction with --version.
|
|
|
|
--version=VERSION, -v VERSION
|
|
The version of the app that should be opened. If not specified, choose
|
|
a version based on the service's traffic split.
|
|
|
|
GCLOUD WIDE FLAGS
|
|
These flags are available to all commands: --access-token-file, --account,
|
|
--billing-project, --configuration, --flags-file, --flatten, --format,
|
|
--help, --impersonate-service-account, --log-http, --project, --quiet,
|
|
--trace-token, --user-output-enabled, --verbosity.
|
|
|
|
Run $ gcloud help for details.
|
|
|
|
NOTES
|
|
This command is currently in beta and might change without notice. This
|
|
variant is also available:
|
|
|
|
$ gcloud app browse
|
|
|