Reputation: 363
I couldn't find it in the documentation, so help me please.
When I want to deploy WAR file to Google App Engine, I just clone it from git in the cloud shell and press
mvn appengine:deploy
And application successfully deploys and starts. So I have a question, when I'm fixing something, pushing in git, how to make application stop and redeploy with new, pulled changes?
Upvotes: 2
Views: 1820
Reputation: 2184
please have a look at this article
it describes how to use gitlab for deploying to Google App engine
Upvotes: 2
Reputation: 6414
Use some continuous integration tool like Jenkins or Hudson, or write your own service that will do the redeploy after detecting change in the code base.
Upvotes: 3