untrack firestore index files

This commit is contained in:
Ruidy Nemausat 2020-05-16 15:59:35 +02:00
parent c3e09c3005
commit 22e0ff4194
2 changed files with 2 additions and 118 deletions

3
.gitignore vendored
View file

@ -29,6 +29,7 @@ yarn-error.log*
.env
.firebase
firebase*json
firebase.json
firestore.indexes.json
*rules
.firebaserc

View file

@ -1,117 +0,0 @@
{
"indexes": [
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "category",
"order": "ASCENDING"
},
{
"fieldPath": "avgRating",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "category",
"order": "ASCENDING"
},
{
"fieldPath": "numRatings",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "category",
"order": "ASCENDING"
},
{
"fieldPath": "price",
"order": "ASCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "city",
"order": "ASCENDING"
},
{
"fieldPath": "avgRating",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "city",
"order": "ASCENDING"
},
{
"fieldPath": "numRatings",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "city",
"order": "ASCENDING"
},
{
"fieldPath": "price",
"order": "ASCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "price",
"order": "ASCENDING"
},
{
"fieldPath": "avgRating",
"order": "DESCENDING"
}
]
},
{
"collectionGroup": "restaurants",
"queryScope": "COLLECTION",
"fields": [
{
"fieldPath": "price",
"order": "ASCENDING"
},
{
"fieldPath": "numRatings",
"order": "DESCENDING"
}
]
}
],
"fieldOverrides": []
}