-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase.json
109 lines (109 loc) · 2.72 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"firestore": [
{
"database": "(default)",
"rules": "firebase/firestore/firestore.default.rules",
"indexes": "firebase/firestore/firestore.default.indexes.json"
},
{
"database": "loca-music",
"rules": "firebase/firestore/firestore.loca-music.rules",
"indexes": "firebase/firestore/firestore.loca-music.indexes.json"
},
{
"database": "obento",
"rules": "firebase/firestore/firestore.obento.rules",
"indexes": "firebase/firestore/firestore.obento.indexes.json"
}
],
"functions": [
{
"source": "firebase/functions",
"codebase": "default",
"ignore": [
"node_modules",
".git",
"firebase-debug.log",
"firebase-debug.*.log"
],
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run clean",
"npm --prefix \"$RESOURCE_DIR\" run compile"
]
}
],
"emulators": {
"singleProjectMode": true,
"auth": {
"port": 9099
},
"functions": {
"port": 5001
},
"firestore": {
"port": 8080
},
"ui": {
"enabled": true
}
},
"remoteconfig": {
"template": "firebase/remoteconfig/template.json"
},
"storage": {
"rules": "firebase/storage/storage.rules"
},
"hosting": {
"public": "firebase/public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/",
"destination": "https://kingu.dev",
"type": 301
},
{
"source": "/obento",
"destination": "https://kingu.dev/apps/obento",
"type": 301
},
{
"source": "/locamusic",
"destination": "https://kingu.dev/apps/locamusic",
"type": 301
},
{
"source": "/terms-of-service",
"destination": "https://kingu.dev/apps/term_of_service.html",
"type": 301
},
{
"source": "/privacy-policy",
"destination": "https://kingu.dev/apps/privacy_policy.html",
"type": 301
},
{
"source": "/obento/changelogs",
"destination": "https://github.com/KoheiKanagu/garage/blob/main/packages/obento/CHANGELOG.md",
"type": 301
},
{
"source": "/locamusic/changelogs",
"destination": "https://github.com/KoheiKanagu/garage/blob/main/packages/listen_to_music_by_location/CHANGELOG.md",
"type": 301
},
{
"source": "/listen_to_music_by_location/changelogs",
"destination": "https://github.com/KoheiKanagu/garage/blob/main/packages/listen_to_music_by_location/CHANGELOG.md",
"type": 301
}
]
},
"extensions": {
"firestore-send-email": "firebase/[email protected]"
}
}