forked from angular/angularfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
48 lines (48 loc) · 826 Bytes
/
firebase.json
File metadata and controls
48 lines (48 loc) · 826 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"database": {
"rules": "test/database.rules.json"
},
"firestore": {
"rules": "test/firestore.rules",
"indexes": "test/firestore.indexes.json"
},
"storage": {
"rules": "test/storage.rules"
},
"emulators": {
"auth": {
"port": 9098
},
"functions": {
"port": 5001
},
"firestore": {
"port": 8089
},
"database": {
"port": 9002
},
"storage": {
"port": 9199
},
"ui": {
"enabled": false
}
},
"functions": [
{
"source": "test/functions",
"codebase": "default",
"ignore": [
"node_modules",
".git",
"firebase-debug.log",
"firebase-debug.*.log",
"*.local"
],
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run build"
]
}
]
}