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

Side by Side Diff: app/app.yaml

Issue 85333007: Begin the redesign process, starting with the navbar. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang.git@master
Patch Set: Code review updates. Created 7 years 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 | « README.md ('k') | app/static/style.css » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 application: dartlang-pub 5 application: dartlang-pub
6 version: 1 6 version: 1
7 runtime: python27 7 runtime: python27
8 threadsafe: true 8 threadsafe: true
9 api_version: 1 9 api_version: 1
10 10
11 builtins: 11 builtins:
12 - deferred: on 12 - deferred: on
13 13
14 handlers: 14 handlers:
15 - url: /static 15 - url: /static
16 static_dir: static 16 static_dir: static
17 17
18 - url: /(.*\.ico) 18 - url: /(.*\.ico)
19 static_files: static/\1 19 static_files: static/\1
20 expiration: 7d 20 expiration: 7d
21 upload: static/(.*\.ico) 21 upload: static/(.*\.ico)
22 22
23 - url: /img/ 23 - url: /app/static/img
24 static_dir: static/img 24 static_dir: static/img
25 25
26 - url: /.* 26 - url: /.*
27 script: pub_dartlang.app 27 script: pub_dartlang.app
28 28
29 libraries: 29 libraries:
30 - name: pycrypto 30 - name: pycrypto
31 version: "2.6" 31 version: "2.6"
32 32
33 inbound_services: 33 inbound_services:
34 - warmup 34 - warmup
OLDNEW
« no previous file with comments | « README.md ('k') | app/static/style.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698