-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
66 lines (55 loc) · 1.21 KB
/
app.yaml
File metadata and controls
66 lines (55 loc) · 1.21 KB
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
runtime: python27
api_version: 1
threadsafe: yes
libraries:
- name: webapp2
version: "2.5.2"
handlers:
- url: /bower_components
static_dir: build/appspot/bower_components
secure: always
- url: /data
static_dir: build/appspot/data
secure: always
- url: /images
static_dir: build/appspot/images
secure: always
- url: /src
static_dir: build/appspot/src
secure: always
- url: /service-worker.js
static_files: build/appspot/service-worker.js
upload: build/appspot/service-worker.js
secure: always
expiration: "1s"
- url: /manifest.json
static_files: build/appspot/manifest.json
upload: build/appspot/manifest.json
secure: always
- url: /.*
static_files: build/appspot/index.html
upload: build/appspot/index.html
secure: always
# - url: .*
# script: main.app
# secure: always
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?bower\.json
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.bak$
- ^(.*/)?node_modules/.*
- ^.*.md|markdown
- ^(bower_components/.*)
- ^(.idea/.*)
- ^(data/.*)
- ^(functions/.*)
- ^(images/.*)
- ^(src/.*)