Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 runtime: go | 1 runtime: go |
| 2 api_version: go1 | 2 api_version: go1 |
| 3 | 3 |
| 4 instance_class: F4_1G | 4 instance_class: F4_1G |
| 5 | 5 |
| 6 handlers: | 6 handlers: |
| 7 # For static resources such as css and js files. | 7 # For static resources such as css and js files. |
| 8 - url: /static | 8 - url: /static |
| 9 secure: always | 9 secure: always |
| 10 static_dir: static | 10 static_dir: static |
| 11 | 11 |
| 12 # For sideloading data for testing and development. | 12 # For sideloading data for testing and development. |
| 13 - url: /_ah/remote_api | 13 - url: /_ah/remote_api |
| 14 script: _go_app | 14 script: _go_app |
| 15 | 15 |
| 16 # For endpoints meant to be hit by a cron job. | |
| 17 - url: /cron/.* | |
| 18 script: _go_app | |
| 19 secure: always | |
| 20 login: admin | |
| 21 | |
| 16 # Everything goes here. | 22 # Everything goes here. |
| 17 - url: /.* | 23 - url: /.* |
| 18 script: _go_app | 24 script: _go_app |
| 19 secure: always | 25 secure: always |
| 20 | 26 |
| 21 builtins: | 27 builtins: |
| 22 - remote_api: on | 28 - remote_api: on |
| OLD | NEW |