-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathapp.yaml
More file actions
106 lines (99 loc) · 2.63 KB
/
Copy pathapp.yaml
File metadata and controls
106 lines (99 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
runtime: python312
handlers:
# Redirect obsolete URLs.
# Blockly files moved from /blockly to /static on 5 Dec 2012.
- url: /blockly/.*
static_files: redirect.html
upload: redirect.html
# Code, Maze and Turtle moved from demos on 29 Dec 2012.
- url: /static/demos/(maze|turtle)/.*
static_files: redirect.html
upload: redirect.html
# Apps was disbanded on 20 Nov 2014.
- url: /static/apps/.*
static_files: redirect.html
upload: redirect.html
# Certain demos were moved on 25 Nov 2022.
- url: /static/demos/fixed/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/resizable/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/toolbox/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/maxBlocks/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/generator/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/headless/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/interpreter/step-execution.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/interpreter/async-execution.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/graph/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/rtl/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/custom-dialogs/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/custom-fields/turtle/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/custom-fields/pitch/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/mirror/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/plane/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/keyboard_nav/.*
static_files: redirect.html
upload: redirect.html
- url: /static/demos/custom-fields/.*
static_files: redirect.html
upload: redirect.html
# Blockly files.
- url: /static
static_dir: static
http_headers:
Access-Control-Allow-Origin: "*"
secure: always
# Storage API.
- url: /storage\.js
static_files: storage.js
upload: storage\.js
secure: always
# Favicon.
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
secure: always
expiration: "30d"
# Apple icon.
- url: /apple-touch-icon\.png
static_files: apple-touch-icon.png
upload: apple-touch-icon\.png
secure: always
expiration: "30d"
# robot.txt
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
secure: always
# Dynamic content.
- url: /.*
script: auto
secure: always