forked from andresgsaravia/research-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
53 lines (41 loc) · 791 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
application: research-engine
version: 1-5-5
runtime: python27
api_version: 1
threadsafe: true
inbound_services:
- mail
handlers:
- url: /_ah/mail/.+
script: mail.app
login: admin
- 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: /google(.+).html
static_files: static/google\1.html
upload: static/google(.+).html
- url: /css
static_dir: css
secure: always
- url: /fonts
static_dir: fonts
secure: always
- url: /static
static_dir: static
secure: always
- url: /js
static_dir: js
secure: always
- url: /cron/.*
script: main.app
login: admin
- url: /.*
script: main.app
secure: always
libraries:
- name: jinja2
version: latest