Hi,

We are running a standard app engine using the Python 2.7 runtime and would 
like to migrate into Python 3.7 by changed our existing yaml file, but I 
got errors on the "Threadsafe:" and "skip_files:" parameters when trying to 
buid/deploy.

Please take a look our existing yaml file below and see what I have to 
change in order to make it working again?

Thanks in advance.


===========================

service: my-app
runtime: python27
api_version: 1
threadsafe: true

skip_files:
- ^(.*/)?\..*$
- node_modules/
- coverage/
- src/
- e2e/

handlers:

- url: /
  static_files: locale-switcher/index.html
  upload: locale-switcher/index.html
  secure: always

- url: /logo-stacked.png
  static_files: locale-switcher/logo-stacked.png
  upload: locale-switcher/logo-stacked.png
  secure: always

# general /en-CA etc, but nothing deeper
- url: /([^./]*)$
  static_files: dist/\1/index.html
  upload: dist/(.*)/index\.html
  secure: always

# any url in the folder that doesn't have an extension
- url: /([^./]*)/([^.]*)$
  static_files: dist/\1/index.html
  upload: dist/(.*)/index\.html
  secure: always

# any assets
- url: /
  static_dir: dist
  secure: always

================ 

Thanks in advance!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8f14f081-040e-4125-bbbb-c46d43a0fe8c%40googlegroups.com.
  • [google-appengine]... Mapperkids

Reply via email to