-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
50 lines (50 loc) · 898 Bytes
/
firebase.json
File metadata and controls
50 lines (50 loc) · 898 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
49
50
{
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint",
"npm --prefix \"$RESOURCE_DIR\" run build"
],
"source": "functions"
},
"database": {
"rules": "database.rules.json"
},
"hosting": {
"target": "auth",
"public": "public",
"rewrites": [
{
"source": "/redirect",
"function": "osmAuth-redirect"
},
{
"source": "/token",
"function": "osmAuth-token"
}
]
},
"emulators": {
"singleProjectMode": true,
"auth": {
"host": "0.0.0.0",
"port": 9099
},
"functions": {
"host": "0.0.0.0",
"port": 5001
},
"database": {
"host": "0.0.0.0",
"port": 9000
},
"hosting": {
"host": "0.0.0.0",
"port": 5000
},
"ui": {
"enabled": true,
"port": 4000,
"host": "0.0.0.0"
}
}
}