Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Tools / GardeningServer / app.yaml
1 application: sheriff-o-matic
2 version: 1
3 runtime: python27
4 api_version: 1
5 threadsafe: true
6
7 handlers:
8 - url: /
9   static_files: sheriff-o-matic.html
10   upload: sheriff-o-matic.html
11
12 - url: /alerts
13   script: alerts.app
14
15 - url: /favicon.ico
16   static_files: favicon.ico
17   upload: favicon.ico
18
19 - url: /images
20   static_dir: images
21
22 - url: /lib
23   static_dir: lib
24
25 - url: /model
26   static_dir: model
27
28 - url: /scripts
29   static_dir: scripts
30
31 - url: /styles
32   static_dir: styles
33
34 - url: /ui
35   static_dir: ui
36
37 # FIXME: Write a script to do the appcfg update so that we can error out
38 # if there is no bower_components, or, even better just run "bower update".
39 - url: /bower_components
40   static_dir: bower_components
41
42 skip_files:
43 - ^(.*/)?#.*#$
44 - ^(.*/)?.*~$
45 - ^(.*/)?.*\.py[co]$
46 - ^(.*/)?.*_test\.py$
47 - ^(.*/)?tests\.py$
48 - ^(.*/)?.*/RCS/.*$
49 - ^(.*/)?\..*$
50 - ^(.*/)?.*\.md$
51 - ^(.*/)?LICENSE$
52 - ^(.*/)?README$
53 - ^(.*/)?Makefile$
54
55 libraries:
56 - name: webapp2
57   version: "latest"