-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
executable file
·67 lines (50 loc) · 1.26 KB
/
app.yaml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
application: netzen-hrd
version: 7
runtime: python27
api_version: 1
default_expiration: 365d
threadsafe: false
builtins:
- appstats: on
handlers:
- url: /gae_mini_profiler/static
static_dir: gae_mini_profiler/static
- url: /gae_mini_profiler/.*
script: gae_mini_profiler.main.application
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
- url: /static/(.*\.(gif|png|jpg))
static_files: static/\1
upload: static/(.*\.(gif|png|jpg))
- url: /static/(.*\.webm)
mime_type: video/webm
static_files: static/\1
upload: static/(.*\.webm)
- url: /static/(.*\.webapp)
mime_type: application/x-web-app-manifest+json
static_files: static/\1
upload: static/(.*\.webapp)
- url: /static/(.*\.mp4)
mime_type: video/mp4
static_files: static/\1
upload: static/(.*\.mp4)
- url: /static/misc/(.+)
static_files: static/misc/\1
upload: misc/(.*)
- url: /static
static_dir: static
- url: /_ah/.*
script: $PYTHON_LIB/google/appengine/ext/admin
login: admin
- url: /admin/.*
script: main.application
login: admin
- url: /.*
script: main.application
libraries:
- name: webapp2
version: latest