1 application: gonativeclient 2 version: 2 3 runtime: python27 4 api_version: 1 5 threadsafe: true 6 7 handlers: 8 - url: /demo 9 static_files: static/index.html 10 upload: static/index\.html 11 secure: always 12 13 - url: /demo/.* 14 static_files: static/index.html 15 upload: static/index\.html 16 secure: always 17 18 - url: /static/home/(.*) 19 static_files: static/home/\1 20 upload: static/home/.* 21 secure: always 22 23 - url: /static 24 static_dir: static 25 secure: always 26 27 - url: /.* 28 script: gonacl.application 29 secure: always 30 31 skip_files: 32 - src/.* 33