When I deploy code through GoogleAppEngineLauncher, does it download all the files?

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
+3
source share
1 answer

( , "dotfiles" ) , , app.yaml , .

, skip_files app.yaml, .

+5

Source: https://habr.com/ru/post/1725402/


All Articles