So, currently GoogleAppEngineLauncher points to the directory containing the app.yaml file, as well as several other directories. Say this is the directory A, B and C. If A and B contain python files, template files, etc. used by the application, but the C directory does not contain any code (this is just a small directory with random materials in it), there will be Does it load when you 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
source
share