forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
71 lines (52 loc) · 1.28 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
69
70
71
#application: schemaorgae
#application: webschemas
application: sdo-fibo
version: 3
runtime: python27
api_version: 1
threadsafe: true
automatic_scaling:
min_idle_instances: 2
inbound_services:
- warmup
env_variables:
PRODSITEDEBUG: 'False'
WARMUPSTATE: 'Auto' # 'Off', 'On', 'Auto' - Off for localhost, On elsewhere
handlers:
- url: /favicon.ico
static_files: docs/favicon.ico
upload: docs/favicon.ico
mime_type: image/x-icon
# To avoid: "Could not guess mimetype for docs/schemaorg.owl. Using application/octet-stream."
- url: /docs/schemaorg.owl
static_files: docs/schemaorg.owl
upload: docs/schemaorg.owl
mime_type: application/rdf+xml
- url: /docs/schema_org_rdfa.html
static_files: data/schema.rdfa
upload: data/schema.rdfa
application_readable: True
mime_type: text/html
- url: /docs/jsonldcontext.json.*
script: sdoapp.app
- url: /docs/full.*.html
script: sdoapp.app
- url: /docs/schemas.html
script: sdoapp.app
- url: /docs/tree.json.*
script: sdoapp.app
- url: /docs
static_dir: docs
#- url: /
# static_files: static/index.html
# upload: static/index.html
# application_readable: True
- url: /search_files
static_dir: static/search_files
- url: /.*
script: sdoapp.app
libraries:
- name: webapp2
version: 2.5.2
- name: jinja2
version: 2.6