gcloud_app (1)
NAME
- gcloud app - manage your App Engine deployments
SYNOPSIS
-
gcloud app GROUP | COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
App Engine is a platform for building scalable web applications and mobile backends. App Engine provides you with built-in services and APIs such as NoSQL datastores, memcache, and a user authentication API, common to most applications.
More information on App Engine can be found here: cloud.google.com/appengine and detailed documentation can be found here: cloud.google.com/appengine/docs
GCLOUD WIDE FLAGS
These flags are available to all commands: --account, --configuration, --flags-file, --flatten, --format, --help, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity. Run $ gcloud help for details.
GROUPS
GROUP is one of the following:
-
- domain-mappings
-
View and manage your App Engine domain mappings.
- firewall-rules
-
View and manage your App Engine firewall rules.
- instances
-
View and manage your App Engine instances.
- logs
-
Manage your App Engine logs.
- operations
-
View and manage your App Engine Operations.
- regions
-
View regional availability of App Engine runtime environments.
- services
-
View and manage your App Engine services.
- ssl-certificates
-
View and manage your App Engine SSL certificates.
- versions
-
View and manage your App Engine versions.
COMMANDS
COMMAND is one of the following:
-
- browse
-
Open the current app in a web browser.
- create
-
Create an App Engine app within the current Google Cloud Project.
- deploy
-
Deploy the local code and/or configuration of your app to App Engine.
- describe
-
Display all data about an existing service.
- open-console
-
Open the App Engine dashboard, or log viewer, in a web browser.
- update
-
Updates an App Engine application.
EXAMPLES
To run your app locally in the development application server to simulate your application running in production App Engine with sandbox restrictions and services provided by App Engine SDK libraries, use the dev_appserver.py command and your app's app.yaml configuration file to run:
- $ dev_appserver.py ~/my_app/app.yaml
For an in-depth look into using the local development server, follow this guide : cloud.google.com/appengine/docs/standard/python/tools/using-local-server
To deploy the code and configuration of your app to the App Engine server, run:
- $ gcloud app deploy ~/my_app/app.yaml
To list all versions of all services of your existing deployments, run:
- $ gcloud app versions list
To generate all relevant config files for ~/my_app (or emit an error message if the directory contents are not recognized), run:
- $ gcloud app gen-config ~/my_app
NOTES
These variants are also available:
- $ gcloud alpha app $ gcloud beta app