-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase.json
54 lines (54 loc) · 1.18 KB
/
firebase.json
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
{
"database": {
"rules": "firebase.config/database.rules.json"
},
"firestore": {
"rules": "firebase.config/firestore.rules",
"indexes": "firebase.config/firestore.indexes.json"
},
"functions": {
"ignore": [
".firebase/**",
".firebaserc",
"firebase.json",
"**/node_modules/**",
"**/logs/**",
"**/src/**",
"**/public/**"
],
"source": "."
},
"storage": {
"rules": "storage.rules"
},
"emulators": {
"auth": {
"host": "localhost",
"port": 9099
},
"functions": {
"host": "localhost",
"port": 5001
},
"firestore": {
"host": "localhost",
"port": 8080
},
"database": {
"host": "localhost",
"port": 9000
},
"hosting": {
"host": "localhost",
"port": 5000
},
"pubsub": {
"host": "localhost",
"port": 8085
},
"ui": {
"host": "localhost",
"enabled": true
}
}
}