-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.yaml
32 lines (32 loc) · 911 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
runtime: python312
service: v2-staging
entrypoint: gunicorn -b :$PORT boxtribute_server.main:app
handlers:
- url: /graphql
script: auto
secure: always
- url: /cron/(.*)
script: auto
secure: always
- url: /
secure: always
static_files: front-build/index.html
upload: front-build/index.html
- url: /manifest.json
static_files: front-build/manifest.json
upload: front-build/manifest.json
- url: /heapanalytics.js
static_files: front-build/heapanalytics.js
upload: front-build/heapanalytics.js
- url: /assets/(.*)
secure: always
static_files: front-build/assets/\1
upload: front-build/assets/(.*)
- url: /(.*\.(ico|png|svg|woff2))$
secure: always
static_files: front-build/\1
upload: front-build/(.*\.(ico|png|svg|woff2))$
- url: /(.*)
secure: always
static_files: front-build/index.html
upload: front-build/index.html