-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
47 lines (36 loc) · 675 Bytes
/
app.yaml
File metadata and controls
47 lines (36 loc) · 675 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
application: google.com:actions-sandbox
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /images
static_dir: images
- url: /css
static_dir: css
- url: /js
static_dir: js
- url: /static
static_dir: static
- url: /example/json
static_dir: examples/json
mime_type: application/json
- url: /example
static_dir: examples
- url: /less/css
static_dir: less/css
- url: /examples/.*
script: main.app
- url: .*
script: main.app
login: required
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: latest
- name: ssl
version: latest