-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
executable file
·47 lines (37 loc) · 1.12 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
application: wave-helpdesk
version: 18
runtime: python
api_version: 1
handlers:
- url: /_wave/.*
script: main.py
- url: .*/(.*\.(gif|png|jpg|ico))
static_files: static/\1
upload: static/(.*\.(gif|png|jpg|ico))
- url: /helpdesk_searches_installer.xml
static_files: static/helpdesk_searches_installer.xml
upload: static/helpdesk_searches_installer.xml
mime_type: text/xml
- url: /helpdesk_newwavemenu.xml
static_files: static/helpdesk_newwavemenu.xml
upload: static/helpdesk_newwavemenu.xml
mime_type: text/xml
- url: .*/(.*search.*\.xml)
static_files: static/helpdesk_searches_installer.xml
upload: static/helpdesk_searches_installer.xml
mime_type: text/xml
- url: .*/(.*\.xml)
static_files: static/helpdesk_newwavemenu.xml
upload: static/helpdesk_newwavemenu.xml
mime_type: text/xml
- url: /localdebug.html
static_files: localdebug.html
upload: localdebug.html
mime_type: text/html
- url: /.*
static_files: static/redirect_to_wave.html
upload: static/redirect_to_wave.html
mime_type: text/html
skip_files:
- ^main_DEPRECIATED\.py
- ^localdebug\.html