[google-appengine] Re: Deploying with one command, not three

2017-08-06 Thread Vitaly Bogomolov
gcloud app deploy --quiet --project $(PROJECT) -v $(VERSION) app.yaml backend.yaml cron.yaml index.yaml queue.yaml works fine -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it

[google-appengine] GAE CI/CD Service Account Permissions

2017-08-06 Thread Mike Hardy
Hi, we are using Bitbucket Pipelines for our CI/CD engine, and it works great with Google App Engine. However, there appears to be one significant security flaw with GCP. We need to permission a service account to deploy our application and the only permission that appears to work is Project O

[google-appengine] Best-Approach to create and REST API (PYTHON 2.7) for a Monolitic App Engine in standard environment

2017-08-06 Thread Richard Cheesmar
I have been considering refactoring my existing app engine App into a series of Microservices with a secure API (authentication required). My existing app is fairly well structured in regard to being modular, but only in the directory and ndb model sense. Most modules communicate with other mo

[google-appengine] Re: Deploying with one command, not three

2017-08-06 Thread Joshua Fox
Actually, *five *commands are needed just to deploy -- how can we do it with one? mvn appengine:deploy mvn appengine:deployCron mvn appengine:deployDispatch mvn appengine:deployIndex mvn appengine:deployQueue On Sun, Aug 6, 2017 at 3:52 PM, Joshua Fox wrote: > We want to deploy the app, the cr

[google-appengine] Deploying with one command, not three

2017-08-06 Thread Joshua Fox
We want to deploy the app, the cron and the indexes in one command, but this does not work mvn appengine:deploy -Dapp.deploy.deployables=app.yaml cron.yml queue.yaml We are forced to run three separate mvn appengine:deploy commands, one each for each of these. This is very slow. How can