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

Side by Side Diff: Tools/GardeningServer/app.yaml

Issue 350563002: Port first garden-o-matic component over to polymer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add console.error Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 application: garden-o-matic 1 application: garden-o-matic
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 handlers: 7 handlers:
8 - url: / 8 - url: /
9 static_files: garden-o-matic.html 9 static_files: garden-o-matic.html
10 upload: garden-o-matic.html 10 upload: garden-o-matic.html
11 11
12 - url: /favicon.ico 12 - url: /favicon.ico
13 static_files: favicon.ico 13 static_files: favicon.ico
14 upload: favicon.ico 14 upload: favicon.ico
15 15
16 - url: /images 16 - url: /images
17 static_dir: images 17 static_dir: images
18 18
19 - url: /scripts 19 - url: /scripts
20 static_dir: scripts 20 static_dir: scripts
21 21
22 - url: /styles 22 - url: /styles
23 static_dir: styles 23 static_dir: styles
24
25 - url: /ui
26 static_dir: ui
27
28 # FIXME: Write a script to do the appcfg update so that we can error out
29 # if there is no bower_components, or, even better just run "bower update".
30 - url: /bower_components
31 static_dir: bower_components
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698