Skip to content

Commit

Permalink
Fix missing images (#652)
Browse files Browse the repository at this point in the history
* increasing performance of mokd data script

* fixing missing images

* updated packages

* extra index

* updated time to be set by the server

* RT

* deleted not used indexes

* type +comments
  • Loading branch information
Sebastian Ovide committed Jun 14, 2021
1 parent 8938c8b commit 8742a1c
Show file tree
Hide file tree
Showing 10 changed files with 538 additions and 3,723 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,10 @@ typings/
.firebase
build
serviceAccountKey.json
scripts/tmp.jpg

.DS_Store

# these files are copied at build time
functions/config.json
public/config.json
public/config.js
tmp.jpg
8 changes: 4 additions & 4 deletions firestore.indexes.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"collectionGroup": "photos",
"queryScope": "COLLECTION",
"fields": [
{ "fieldPath": "published", "mode": "ASCENDING" },
{ "fieldPath": "moderated", "mode": "DESCENDING" }
{ "fieldPath": "moderated", "mode": "ASCENDING" },
{ "fieldPath": "updated", "mode": "DESCENDING" }
]
},
{
"collectionGroup": "photos",
"queryScope": "COLLECTION",
"fields": [
{ "fieldPath": "moderated", "mode": "ASCENDING" },
{ "fieldPath": "updated", "mode": "DESCENDING" }
{ "fieldPath": "published", "mode": "ASCENDING" },
{ "fieldPath": "updated", "mode": "ASCENDING" }
]
}
]
Expand Down

0 comments on commit 8742a1c

Please sign in to comment.