1application: gonativeclient 2version: 2 3runtime: python27 4api_version: 1 5threadsafe: true 6 7handlers: 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 31skip_files: 32- src/.* 33