summaryrefslogtreecommitdiffstats
path: root/webapp/app.yaml
blob: fea66ed8317c01868e95b39bacef2488c60f1f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
application: gerrit-code-review-tool-demo
version: 1
runtime: python
api_version: 1

default_expiration: 7d  # This is good for images, which never change

handlers:

- url: /(robots.txt|favicon.ico)
  static_files: static/\1
  upload: static/(robots.txt|favicon.ico)

- url: /google7db36eb2cc527940.html
  static_files: static/robots.txt
  upload: static/robots.txt

- url: /(application_version)
  static_files: static/\1
  mime_type: text/plain
  expiration: 1s
  upload: static/application_version

- url: /static
  static_dir: static

- url: .*
  script: main.py