mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-08 18:45:13 +00:00
37 lines
1 KiB
Text
37 lines
1 KiB
Text
NAME
|
|
gcloud app create - create an App Engine app within the current Google
|
|
Cloud Project
|
|
|
|
SYNOPSIS
|
|
gcloud app create [--region=REGION] [GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
Create an App Engine app within the current Google Cloud Project.
|
|
|
|
EXAMPLES
|
|
To create an app with region chosen interactively, run:
|
|
|
|
$ gcloud app create
|
|
|
|
To create an app in the us-central region, run:
|
|
|
|
$ gcloud app create --region=us-central
|
|
|
|
FLAGS
|
|
--region=REGION
|
|
The region to create the app within. Use gcloud app regions list to
|
|
list available regions. If not provided, select region interactively.
|
|
|
|
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 variant is also available:
|
|
|
|
$ gcloud beta app create
|
|
|