-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.json
72 lines (72 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"database": {
"rules": "database.rules.json"
},
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"storage": {
"rules": "storage.rules"
},
"emulators": {
"auth": {
"port": 9099
},
"functions": {
"port": 5001
},
"firestore": {
"port": 8080
},
"database": {
"port": 9000
},
"storage": {
"port": 9199
},
"ui": {
"enabled": true
},
"singleProjectMode": true
},
"remoteconfig": {
"template": "remoteconfig.template.json"
},
"extensions": {},
"flutter": {
"platforms": {
"android": {
"default": {
"projectId": "resiease",
"appId": "1:388643545730:android:d80a8b4b7fefb6038d0a9b",
"fileOutput": "android/app/google-services.json"
}
},
"dart": {
"lib/firebase_options.dart": {
"projectId": "resiease",
"configurations": {
"android": "1:388643545730:android:d80a8b4b7fefb6038d0a9b",
"ios": "1:388643545730:ios:040c0a1ee8580b268d0a9b",
"web": "1:388643545730:web:27c5cbf0c3592ee08d0a9b"
}
}
}
}
}
}