-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
executable file
·45 lines (36 loc) · 984 Bytes
/
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
application: ntersekt
version: 1
runtime: python
api_version: 1
handlers:
- url: /apple-touch-icon\.png
mime_type: image/png
static_files: static/apple-touch-icon.png
upload: static/apple-touch-icon.png
- url: /favicon\.ico
mime_type: image/png
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /(robots\.txt|humans\.txt|crossdomain\.xml)
static_files: static/\1
upload: static/(robots\.txt|humans\.txt|crossdomain\.xml)
- url: /img/(.*\.(gif|png|jpg))
static_files: static/img/\1
upload: static/img/(.*\.(gif|png|jpg))
- url: /swf/(.*\.swf)
static_files: static/swf/\1
upload: static/swf/(.*\.swf)
- url: /css/(.*\.css)
mime_type: text/css
static_files: static/css/\1
upload: static/css/(.*\.css)
- url: /js/(.*\.js)
mime_type: text/javascript
static_files: static/js/\1
upload: static/js/(.*\.js)
- url: /(.*\.html)
mime_type: text/html
static_files: static/\1
upload: static/(.*\.html)
- url: .*
script: main.py