forked from matthewkrupnik/docker-firestore-emulator-with-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
35 lines (35 loc) · 702 Bytes
/
firebase.json
File metadata and controls
35 lines (35 loc) · 702 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
32
33
34
35
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"pubsub": {
"port": PUSUB_PORT_PLACEHOLDER
},
"functions": {
"predeploy": [
"npm --prefix ./functions run lint",
"npm --prefix ./functions run build"
],
"source": "functions"
},
"emulators": {
"functions": {
"host": "0.0.0.0",
"port": FUNCTIONS_PORT_PLACEHOLDER
},
"firestore": {
"host": "0.0.0.0",
"port": FIRESTORE_PORT_PLACEHOLDER
},
"pubsub": {
"host": "0.0.0.0",
"port": PUSUB_PORT_PLACEHOLDER
},
"ui": {
"enabled": true,
"host": "0.0.0.0",
"port": UI_PORT_PLACEHOLDER
}
}
}