Compare commits

...

5 Commits

Author SHA1 Message Date
0f954d30a9 fix import syntax
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-07-08 19:14:46 -04:00
24f9aff11d Update node Docker tag to v22 2024-07-08 19:14:46 -04:00
e5f0a70f97 Add Liz's Book Bar in Brooklyn
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-07-03 00:36:42 +00:00
1e476c767b Merge pull request 'Update caddy Docker tag to v2.8.4' (#11) from renovate/caddy-2.x into master
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Reviewed-on: #11
2024-06-09 14:48:52 +00:00
e28078402f Update caddy Docker tag to v2.8.4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-06-03 19:01:14 +00:00
3 changed files with 17 additions and 3 deletions

View File

@ -1,10 +1,10 @@
FROM node:21 AS builder
FROM node:22 AS builder
COPY . /src
WORKDIR /src
RUN npm install && node ./index.js
FROM caddy:2.7.6
FROM caddy:2.8.4
COPY img /usr/share/caddy/img
COPY css /usr/share/caddy/css

View File

@ -1,7 +1,7 @@
import { load } from "cheerio";
import { readFile, writeFile } from "fs";
import process from "child_process";
import stores from "./stores.json" assert { type: "json" };
import stores from "./stores.json" with { type: "json" };
function GetRecentChanges() {
const res = process

View File

@ -1650,5 +1650,19 @@
"website": "https://shop.shakeandco.com/",
"events": "Yes",
"cafe": "No"
},
{
"name": "Liz's Book Bar",
"address": "315 Smith St",
"city": "Brooklyn",
"state": "NY",
"postcode": "11231",
"description": "",
"lat": "40.68121559370364",
"long": "-73.99405889694158",
"country": "USA",
"website": "https://www.lizsbookbar.com/",
"events": "Yes",
"cafe": "Yes"
}
]