-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.yaml
executable file
·68 lines (53 loc) · 1.29 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
68
application: curiousdognightapp
version: 2
runtime: python27
api_version: 1
threadsafe: yes
default_expiration: "5d"
builtins:
- appstats: on
- admin_redirect: on
- deferred: on
- remote_api: on
libraries:
- name: jinja2
version: "2.6"
- name: markupsafe
version: "0.15"
- name: ssl
version: 2.7
inbound_services:
- warmup
includes:
- lib/mapreduce/include.yaml
handlers:
- url: /_ah/pipeline(/.*)?
script: pipeline.handlers._APP
# Invalidate old recommended subreddits URL
- url: /subreddits/recommended(/.*)?
static_files: application/static/robots.txt
upload: application/static/robots.txt
login: admin
- url: /favicon.ico
static_files: application/static/icons/favicon.ico
upload: application/static/icons/favicon.ico
- url: /apple-touch-icon.png
static_files: application/static/icons/apple-touch-icon.png
upload: application/static/icons/apple-touch-icon.png
- url: /robots.txt
static_files: application/static/robots.txt
upload: application/static/robots.txt
- url: /static
static_dir: application/static
- url: /subreddits/add-new
script: application.app
login: admin
- url: /subreddits/update-subreddit-counts
script: application.app
login: admin
- url: /jobs(.*)?
script: application.app
login: admin
- url: .*
script: application.app
secure: always