Reputation: 1444
I'd like to perform some preliminary checks before running the actual deployment to AppEngine. It would be nice to put some Python find in the repository, so that gcloud would behave similarly for everyone. Does gclould provide some means for this kind of customization? Can't find this in the official docs.
Upvotes: 0
Views: 131
Reputation: 21404
No, there are no hooks in gcloud app deploy
. But you could pretty easily write a small Python script to wrap the call to gcloud using e.g. the subprocess module and have all of your users deploy via that script.
Upvotes: 2