Files
booster/firebase.json
Zhigang Fang 23629c4a7d feat: integrate basic chat (#9)
* fix: test

* chore: wip add chat

* chore: add basic chat

* chore: update lock files

* chore: add android signing

* chore: only sign release build

* chore: fix react-native-progress-display

* fix: only support 21 and up

* chore: update fix on react-native-progress-display

* chore: add database

* fix: build

* chore: attemp on fix google sign in

* fix: google login

* chore: add appcenter

* feat: switch to appcenter

* fix: typo

* chore: add group
2019-07-01 10:02:07 +08:00

27 lines
585 B
JSON

{
"firestore": {
"rules": "firebase/firestore.rules",
"indexes": "firebase/firestore.indexes.json"
},
"functions": {
"predeploy": ["yarn workspace @mercy/functions build"]
},
"hosting": {
"predeploy": ["yarn workspace @mercy/web build"],
"public": "web/build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"storage": {
"rules": "firebase/storage.rules"
},
"database": {
"rules": "firebase/database.rules.json"
}
}