Hi, I am trying to deploy a NodeJS app (runtime: nodejs10) to GAE and apparently the gcloud app deploy command is omitting my subdirectories -- from the logs I see lines such as:
2019-09-09 14:47:50,990 DEBUG root Skipping upload of [routes/myroute.js]
I did some source diving into gcloud tool and it looks like it is from this line:
lib/googlecloudsdk/api_lib/app/deploy_app_command_util.py 212:
log.debug('Skipping upload of [{f}]'.format(f=rel_path))
.. where it is checking a SHA1 checksum for existence. Ok, but then that should mean the file has already been uploaded, which is not the case for me. I can tell since my app code's require('./routes/myroute.js') is failing..
I have previously used AppEngine (for almost 10 years on and off, I might add) with Python and Go with no similar problems. Is there something wrong with the current SDK version of the uploader or am I just doing something horribly wrong?
FYI, my .gcloudignore does not include these subdirectories etc.
- M