-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from eugenethreat/main
Add Google Apps Script Spreadsheet Editing
- Loading branch information
Showing
7 changed files
with
759 additions
and
654 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ignore all reflected build files | ||
_site/* | ||
.jekyll-cache/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# networkmap | ||
|
||
This map of PCW's network coverage is built with MapBox. | ||
This map of PCW's network coverage is built with MapBox via Jekyll. | ||
|
||
# Local Development | ||
You can run this site locally in a container using Docker | ||
* clone the repo with `git clone` | ||
* `docker compose up -d` | ||
* `jekyll` will serve at `localhost:4000` | ||
|
||
# Editing map contents | ||
* As of 8/20/24, the map **no longer uses the geosjon files in `/data`**. It is now linked to a Google Apps Script that generates GeoJSON files dynamically based of the content of a spreadsheet - **please contact a PCW staff member for access.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
services: | ||
jekyll: | ||
# image: jekyll/jekyll | ||
build: . | ||
volumes: | ||
- .:/srv/jekyll | ||
ports: | ||
- "4000:4000" | ||
# command: jekyll serve --force_polling --drafts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# from my digging the github action uses jekyll 3.9.5 but that doesn't exist on dhub... | ||
# https://github.com/jekyll/jekyll/issues/9066 - issue with webrick gem - downgrade version | ||
FROM jekyll/jekyll:3.8.5 | ||
CMD jekyll serve --force_polling --drafts |
File renamed without changes.
Oops, something went wrong.