Celestine Babayaro
Celestine Babayaro

Reputation: 363

How redeploy application on Google App Engine?

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

Answers (2)

Michael Meyer
Michael Meyer

Reputation: 2184

please have a look at this article

https://medium.com/evenbit/an-easy-guide-to-automatically-deploy-your-google-app-engine-project-with-gitlab-ci-48cb84757125

it describes how to use gitlab for deploying to Google App engine

Upvotes: 2

Krzysztof Cichocki
Krzysztof Cichocki

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

Related Questions