You have a project for your App Engine application that serves a development environment.
The required testing has succeeded and you want to create a new project to serve as your production environment.
What should you do?
Click on the arrows to vote for the correct answer
A. B. C. D.A.
Option A is the correct answer: Use gcloud to create the new project, and then deploy your application to the new project.
When creating a new project for your App Engine application to serve as your production environment, the recommended approach is to create a new project and deploy your application to the new project using the gcloud command-line tool.
Here are the steps to follow:
Open the Cloud Console and navigate to the App Engine section.
In the App Engine section, locate the existing project that serves as your development environment and take note of the project ID.
Use the gcloud tool to create a new project for your production environment by running the following command:
cssgcloud projects create [PROJECT-ID] --name="[NAME]"
Replace [PROJECT-ID]
with a unique ID for your new project, and [NAME]
with a descriptive name for your new project.
pythongcloud config set project [PROJECT-ID]
Replace [PROJECT-ID]
with the ID of your new project.
gcloud app deploy
This command will deploy your application to the new project and create a new version of your application.
By following these steps, you can create a new project for your App Engine application to serve as your production environment, and deploy your application to the new project using the gcloud command-line tool.