So currently GoogleAppEngineLauncher is pointing to a directory that contains my app.yaml file, along with several other directories - Let's say they are directory A, B and C. If A and B contain python files, template files etc. used by the app, but directory C contains no code whatsoever (it's just a misc directory with random stuff in it), will it still get uploaded when I deploy code?
Here is my app.yaml file:
application: myapp
version: 1
runtime: python
api_version: 1
handlers:
- url: /stylesheet
static_dir: stylesheet
- url: /images
static_dir: images
- url: /.*
script: main.py