-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathapp-shared.yaml
More file actions
31 lines (31 loc) · 915 Bytes
/
app-shared.yaml
File metadata and controls
31 lines (31 loc) · 915 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
runtime: python312
service: shared-staging
entrypoint: gunicorn -b :$PORT boxtribute_server.shared_main:app
automatic_scaling:
max_instances: 5
handlers:
- url: /public
script: auto
secure: always
- url: /
secure: always
static_files: shared-build/index.html
upload: shared-build/index.html
- url: /manifest.json
static_files: shared-build/manifest.json
upload: shared-build/manifest.json
- url: /heapanalytics.js
static_files: shared-build/heapanalytics.js
upload: shared-build/heapanalytics.js
- url: /assets/(.*)
secure: always
static_files: shared-build/assets/\1
upload: shared-build/assets/(.*)
- url: /(.*\.(ico|png|svg|woff2))$
secure: always
static_files: shared-build/\1
upload: shared-build/(.*\.(ico|png|svg|woff2))$
- url: /(.*)
secure: always
static_files: shared-build/index.html
upload: shared-build/index.html