Is there a way to deploy / update only static content to GAE?

There are many cases where we only have to update the static content of a GAE production application.

Examples:

  • CSS changes and other related resources such as images
  • New HTML pages, application API remains the same (RESTful web services)
  • Client Side Stream Changes (JS Only)

Each of the above changes requires full deployment.

I read the documentation (Java) and searched this forum (and others), and I am sure that there is no such method.

Partial application updates in GAE are possible, such as updating indexes, updating cron jobs, managing the backend (deployment, start, stop, etc.), but nothing about updating static content.

  • Does anyone know how easy it is to deploy / upgrade the static part of a GAE application?
  • Is this something that people using GAE would need / use?
+5
source share
1 answer

Impossible to do. Download feature details!

0
source

All Articles