forked from jrk/remindify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
31 lines (29 loc) · 648 Bytes
/
app.yaml
File metadata and controls
31 lines (29 loc) · 648 Bytes
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
application: killerooping
# TODO: set the following line correctly
version: 2014-08-31
runtime: python
api_version: 1
handlers:
- url: /
script: main.py
- url: /favicon.ico
static_files: static/favicon.ico
upload: static/favicon.ico
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /static
static_dir: static
- url: /_ah/mail/p@.+
script: handle_new_email.py
login: admin
- url: /_ah/mail/r.+@.+
script: handle_reply_email.py
login: admin
- url: .*
script: main.py
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
login: admin
inbound_services:
- mail