-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.yaml
39 lines (36 loc) · 939 Bytes
/
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
runtime: python310
instance_class: F4
automatic_scaling:
target_cpu_utilization: 0.95
target_throughput_utilization: 0.95
max_instances: 1
max_pending_latency: 10000ms
min_pending_latency: 10000ms
max_concurrent_requests: 80
handlers:
- url: /api/.*
script: auto
secure: always
redirect_http_response_code: 301
- url: /
static_files: build/index.html
upload: build/index.html
secure: always
redirect_http_response_code: 301
- url: /(.*)
static_files: build/\1
upload: build/(.*)
secure: always
redirect_http_response_code: 301
- url: /static/css/(.*)
static_files: build/static/css/\1
upload: build/static/css/(.*)
secure: always
redirect_http_response_code: 301
- url: /static/js/(.*)
static_files: build/static/js/\1
upload: build/static/js/(.*)
secure: always
redirect_http_response_code: 301
env_variables:
CIRRO_AUTH_CLIENT_ID: ""