0
votes

I would like to download the source code of a module I recently deployed to Google Cloud Appengine. Currently, I am only able to download the default application.

Does anyone know any how i specify a module / service (google re-named recently)

I have tried module-application-id but so far I found that only application-id format works.

https://cloud.google.com/appengine/docs/python/tools/appcfg-arguments#download_app

1
if you deployed it, why don't you already have the source code?Takarii

1 Answers

1
votes

Use:

appcfg.py download_app -A <your_app_id> -M <module_name> -V <your_module_version> <output-dir>

Make sure you specify your module/service version otherwise it will not work.

You can find the module/service version in the console under Appengine> Versions.