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