-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.resource-type.yaml
43 lines (43 loc) · 1.04 KB
/
firebase.resource-type.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
40
41
42
43
description: >-
After you have a Firebase project, register a web app with that project. In
the Firebase console's project overview page, click the "Add app" button, then
the "Web" icon (**</>**) to start the setup.
schema:
$schema: 'https://json-schema.org/draft/2020-12/schema'
type: object
properties:
apiKey:
type: string
description: ''
default: ''
appId:
type: string
description: ''
default: ''
authDomain:
type: string
description: 'eg.: [PROJECT_ID].firebaseapp.com'
default: ''
measurementId:
type: string
description: '(optional) Used for Firebase Analytics '
default: ''
messagingSenderId:
type: string
description: ''
default: ''
projectId:
type: string
description: ''
default: ''
storageBucket:
type: string
description: 'eg.: [PROJECT_ID].appspot.com'
default: ''
required:
- apiKey
- authDomain
- projectId
- storageBucket
- messagingSenderId
- appId