From 205ed1dcafe8ead3a44d1bbc03d49c7de7e19669 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 22 May 2023 11:19:42 -0400 Subject: [PATCH] Testing geofeed proxy --- _headers | 1 + _redirects | 1 + functions | 1 + static/_redirects | 1 - static/_routes.json | 5 +++++ static/functions/geofeed.csv.js | 4 ++++ 6 files changed, 12 insertions(+), 1 deletion(-) create mode 120000 _headers create mode 120000 _redirects create mode 120000 functions create mode 100644 static/_routes.json create mode 100644 static/functions/geofeed.csv.js diff --git a/_headers b/_headers new file mode 120000 index 0000000..c73f6b0 --- /dev/null +++ b/_headers @@ -0,0 +1 @@ +./static/_headers \ No newline at end of file diff --git a/_redirects b/_redirects new file mode 120000 index 0000000..12b15c0 --- /dev/null +++ b/_redirects @@ -0,0 +1 @@ +./static/_redirects \ No newline at end of file diff --git a/functions b/functions new file mode 120000 index 0000000..910093e --- /dev/null +++ b/functions @@ -0,0 +1 @@ +./static/functions \ No newline at end of file diff --git a/static/_redirects b/static/_redirects index 82a549b..e69de29 100644 --- a/static/_redirects +++ b/static/_redirects @@ -1 +0,0 @@ -/geofeed.csv https://docs.google.com/spreadsheets/d/e/2PACX-1vQt0iQi7wFZ9tNSFuMSTdZtT10cbtJFTaSp0OHvXH5O4Im9xG0_SuKNDsLeiEUqVppiNFoTN1reGDXy/pub?gid=391960727&single=true&output=csv 200 \ No newline at end of file diff --git a/static/_routes.json b/static/_routes.json new file mode 100644 index 0000000..e5e8e4d --- /dev/null +++ b/static/_routes.json @@ -0,0 +1,5 @@ +{ + "version": 1, + "include": ["/*"], + "exclude": [] +} \ No newline at end of file diff --git a/static/functions/geofeed.csv.js b/static/functions/geofeed.csv.js new file mode 100644 index 0000000..9ae83cc --- /dev/null +++ b/static/functions/geofeed.csv.js @@ -0,0 +1,4 @@ +export function onRequest(context) { + return fetch("https://docs.google.com/spreadsheets/d/e/2PACX-1vQt0iQi7wFZ9tNSFuMSTdZtT10cbtJFTaSp0OHvXH5O4Im9xG0_SuKNDsLeiEUqVppiNFoTN1reGDXy/pub?gid=391960727&single=true&output=csv") + } + \ No newline at end of file