mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 07:44:31 +00:00
remove old lines
This commit is contained in:
parent
f151acf4ad
commit
200b03ba92
2 changed files with 0 additions and 14 deletions
|
@ -318,9 +318,6 @@ def ApiDelete(file):
|
|||
|
||||
db.collection(os.getenv("PREFIX")).document(file).delete()
|
||||
s3.delete_object(Bucket=os.getenv("AWS_BUCKET"), Key=f"{file_name}/{file}")
|
||||
s3.delete_object(
|
||||
Bucket=os.getenv("AWS_BUCKET"), Key=f"{file_name}/{file_name}-512.{file_ext}"
|
||||
)
|
||||
s3.delete_object(
|
||||
Bucket=os.getenv("AWS_BUCKET"),
|
||||
Key=f"{file_name}/{file_name}-{SIZES[0][0]}.{file_ext}",
|
||||
|
|
|
@ -116,13 +116,6 @@ if (
|
|||
items = JSON.parse(fs.readFileSync("data/items.json", "utf-8"));
|
||||
}
|
||||
|
||||
// const ordered = Object.keys(items)
|
||||
// .sort().reverse()
|
||||
// .reduce((obj, key) => {
|
||||
// obj[key] = items[key];
|
||||
// return obj;
|
||||
// }, {} as typeof items);
|
||||
|
||||
Object.keys(items).forEach((year) => {
|
||||
items[year].sort((a, b) => b.date - a.date);
|
||||
});
|
||||
|
@ -169,7 +162,3 @@ if (ENVIRONMENT == "dev") {
|
|||
}
|
||||
fs.writeFileSync("out/index.html", `<!DOCTYPE html />${html}`);
|
||||
log.info("Build finished!");
|
||||
|
||||
// console.log(await db.collection("images").count().get().then((snapshot) => {
|
||||
// return snapshot.data().count;
|
||||
// }));
|
||||
|
|
Loading…
Add table
Reference in a new issue