forked from PaulKinlan/qrcode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.yaml
More file actions
35 lines (30 loc) · 698 Bytes
/
app.yaml
File metadata and controls
35 lines (30 loc) · 698 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
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "10s"
handlers:
- url: /manifest.json
mime_type: application/json
static_files: dist/manifest.json
upload: dist/manifest.json
secure: always
http_headers:
Access-Control-Allow-Origin: "*"
- url: /
mime_type: text/html
static_files: dist/index.html
secure: always
upload: dist/index.html
http_headers:
Content-Security-Policy: "script-src 'self' 'unsafe-inline' data: https://www.google-analytics.com"
- url: /(.+)
static_files: dist/\1
upload: dist/(.+)
secure: always
http_headers:
Access-Control-Allow-Origin: "*"
skip_files:
- ^.tmp/.*
- ^app/.*
- ^jsqrcode/.*
- ^node_modules/.*