-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapphosting.yaml
More file actions
119 lines (118 loc) · 3.1 KB
/
apphosting.yaml
File metadata and controls
119 lines (118 loc) · 3.1 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
107
108
109
110
111
112
113
114
115
116
117
118
119
# Settings for Backend (on Cloud Run).
# See https://firebase.google.com/docs/app-hosting/configure#cloud-run
runConfig:
minInstances: 0
maxInstances: 100
memoryMiB: 512
timeoutSeconds: 300
# Environment variables and secrets.
# Configure environment variables.
# See https://firebase.google.com/docs/app-hosting/configure#user-defined-environment
# Grant access to secrets in Cloud Secret Manager.
# See https://firebase.google.com/docs/app-hosting/configure#secret-parameters
# Values must use quotes
# See https://medium.com/@andre.mendes.peixoto/%EF%B8%8F-gotcha-with-boolean-environment-variables-in-firebase-app-hosting-and-how-to-fix-it-6e67947f2a56
env:
# Yarn
- variable: YARN_ENABLE_IMMUTABLE_INSTALLS
value: "false"
availability:
- BUILD
- RUNTIME
# Firebase
- variable: F_API_KEY
value: "AIzaSyAQdNWMlI8-Pl5CAvpDxEoMEorwR_iYsH4"
availability:
- BUILD
- RUNTIME
- variable: F_AUTH_DOMAIN
value: "cuna.com.co"
availability:
- BUILD
- RUNTIME
- variable: F_PROJECT_ID
value: "cuna-2980b9"
availability:
- BUILD
- RUNTIME
- variable: F_STORAGE_BUCKET
value: "cuna-2980b9.firebasestorage.app"
availability:
- BUILD
- RUNTIME
- variable: F_MESSAGING_SENDER_ID
value: "516433389242"
availability:
- BUILD
- RUNTIME
- variable: F_APP_ID
value: "1:516433389242:web:eda757ac314d6dcf9ec483"
availability:
- BUILD
- RUNTIME
- variable: F_MEASUREMENT_ID
value: "G-X7H48BMMRK"
availability:
- BUILD
- RUNTIME
# Service account
- variable: F_PRIVATE_KEY
secret: fPrivateKey
availability:
- BUILD
- RUNTIME
- variable: F_CLIENT_EMAIL
secret: fClientEmail
availability:
- BUILD
- RUNTIME
# App check, site key
- variable: RECAPTCHA_ENTERPRISE_SITE_KEY
value: "6Lf24mwqAAAAAI0jHdUu8AcmYcyqjkCwRhquwtDr"
availability:
- BUILD
- RUNTIME
# Cloud functions urls
- variable: CF_SCRAPE_COURSES_URL
secret: cfScrapeCoursesUrl
availability:
- BUILD
- RUNTIME
- variable: CF_SCRAPE_COURSE_GROUPS_URL
secret: cfScrapeCourseGroupsUrl
availability:
- BUILD
- RUNTIME
# CSRF protection
- variable: CSURF_SECRET
secret: csurfSecret
availability:
- BUILD
- RUNTIME
# Puppeteer
- variable: PUPPETEER_CACHE_DIR
value: ".output/puppeteer"
availability:
- BUILD
- RUNTIME
# Project
- variable: NODE_ENV
value: "production"
availability:
- BUILD
- RUNTIME
- variable: INSTANCE
value: "live"
availability:
- BUILD
- RUNTIME
- variable: ROOT_INSTANCE
value: "live"
availability:
- BUILD
- RUNTIME
- variable: INDEXABLE
value: "true"
availability:
- BUILD
- RUNTIME