| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 runtime: go | 5 runtime: go |
| 6 api_version: 1 | 6 api_version: 1 |
| 7 vm: true | 7 vm: true |
| 8 | 8 |
| 9 beta_settings: | 9 beta_settings: |
| 10 service_account_scopes: "https://www.googleapis.com/auth/userinfo.email,https:
//www.googleapis.com/auth/devstorage.full_control,https://www.googleapis.com/aut
h/cloud-platform,https://www.googleapis.com/auth/bigtable.data" | 10 service_account_scopes: "https://www.googleapis.com/auth/userinfo.email,https:
//www.googleapis.com/auth/devstorage.full_control,https://www.googleapis.com/aut
h/cloud-platform,https://www.googleapis.com/auth/bigtable.data" |
| 11 | 11 |
| 12 handlers: | 12 handlers: |
| 13 - url: /s | 13 - url: /s |
| 14 static_dir: static/dist | 14 static_dir: static/dist |
| 15 secure: always | 15 secure: always |
| 16 #login: required | 16 #login: required |
| 17 | 17 |
| 18 - url: /.* | 18 - url: /.* |
| 19 script: _go_app | 19 script: _go_app |
| 20 secure: always | 20 secure: always |
| OLD | NEW |