-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
58 lines (42 loc) · 810 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
46
47
48
49
50
51
52
53
54
55
56
57
58
application: sticklet-notes
version: 9
runtime: python
api_version: 1
inbound_services:
- channel_presence
handlers:
- url: /css
static_dir: css
- url: /js
static_dir: js
- url: /images
static_dir: images
- url: /notes
script: notes.py
- url: /notes/trash
script: notes.py
- url: /notes/delete
script: delete.py
- url: /notes/trash/delete
script: delete.py
- url: /greeting
script: main.py
- url: /_ah/channel/.*
script: notes.py
- url: /share
script: notes.py
- url: /channel
script: main.py
- url: /manifest
static_files: manifest
mime_type: text/cache-manifest
upload: manifest
expiration: "0s"
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /.*
script: main.py