Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Side by Side Diff: app.yaml

Issue 2203373002: Roll to newer package:markdown version (Closed) Base URL: git@github.com:dart-lang/pub-dartlang-dart.git@master
Patch Set: Update app.yaml / Dockerfile Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Dockerfile ('k') | app/pubspec.lock » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 runtime: custom 5 runtime: custom
6 vm: true 6 vm: true
7 api_version: 1 7 api_version: 1
8 threadsafe: true 8 threadsafe: true
9 module: default 9 service: default
10 10
11 handlers: 11 handlers:
12 - url: /static 12 - url: /static
13 static_dir: static 13 static_dir: static
14 secure: always 14 secure: always
15 15
16 - url: /(.*\.ico) 16 - url: /(.*\.ico)
17 static_files: static/\1 17 static_files: static/\1
18 expiration: 7d 18 expiration: 7d
19 upload: static/(.*\.ico) 19 upload: static/(.*\.ico)
(...skipping 15 matching lines...) Expand all
35 35
36 automatic_scaling: 36 automatic_scaling:
37 min_num_instances: 2 37 min_num_instances: 2
38 max_num_instances: 4 38 max_num_instances: 4
39 39
40 skip_files: 40 skip_files:
41 - ^.*/packages.*$ 41 - ^.*/packages.*$
42 - ^.*\.dart$ 42 - ^.*\.dart$
43 - ^\.git/.*$ 43 - ^\.git/.*$
44 44
OLDNEW
« no previous file with comments | « Dockerfile ('k') | app/pubspec.lock » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698