OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # To check locally (couldn't fetch from cloud storage because | 5 # To check locally (couldn't fetch from cloud storage because |
6 # dev_appserver doesn't support service account) | 6 # dev_appserver doesn't support service account) |
7 # $ ../goenv.sh goapp serve | 7 # $ ../goenv.sh goapp serve |
8 # | 8 # |
9 # To deploy | 9 # To deploy |
10 # $ ../goenv.sh goapp deploy | 10 # $ ../goenv.sh goapp deploy |
11 # | 11 # |
12 application: chromium-build-stats | 12 application: chromium-build-stats |
13 version: 1 | 13 version: 1 |
14 runtime: go | 14 runtime: go |
15 api_version: go1 | 15 api_version: go1 |
16 | 16 |
17 handlers: | 17 handlers: |
18 - url: /(.+.ico) | |
shinyak
2014/09/19 05:40:04
Maybe /(.+\.ico) ?
ukai
2014/09/19 06:19:23
Done.
| |
19 static_files: static/\1 | |
20 mime_type: image/x-icon | |
21 upload: static/(.+.ico) | |
shinyak
2014/09/19 05:40:04
ditto.
ukai
2014/09/19 06:19:23
Done.
| |
22 | |
23 - url: /(robots\.txt) | |
24 static_files: static/\1 | |
25 mime_type: text/plain | |
26 upload: static/(robots\.txt) | |
27 | |
18 - url: /file.* | 28 - url: /file.* |
19 script: _go_app | 29 script: _go_app |
20 login: required | 30 login: required |
21 - url: /ninja_log.* | 31 - url: /ninja_log.* |
22 script: _go_app | 32 script: _go_app |
23 - url: /.* | 33 - url: /.* |
24 script: _go_app | 34 script: _go_app |
OLD | NEW |