From 474d7419cdcf2fd6b1ae1f10b1e2d2abd2650379 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Thu, 24 Mar 2022 12:00:46 +0100 Subject: [PATCH] =?UTF-8?q?minor=20tweaks=20=F0=9F=93=9D;=204.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 1 + package.json | 2 +- readme.md | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07e8936..a510b70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,5 +15,6 @@ RUN npm install --production && npm cache clean --force ADD . /app RUN ln -s /app/cli.js /usr/local/bin/gtfs-via-postgres +VOLUME /gtfs WORKDIR /gtfs ENTRYPOINT ["/app/cli.js"] diff --git a/package.json b/package.json index 2271931..82dc0cd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gtfs-via-postgres", "description": "Process GTFS using PostgreSQL.", - "version": "4.0.0", + "version": "4.0.1", "main": "lib/index.js", "bin": { "gtfs-to-sql": "cli.js" diff --git a/readme.md b/readme.md index a607cb1..ea8f425 100644 --- a/readme.md +++ b/readme.md @@ -10,9 +10,9 @@ [![support me via GitHub Sponsors](https://img.shields.io/badge/support%20me-donate-fa7664.svg)](https://github.com/sponsors/derhuerst) [![chat with me on Twitter](https://img.shields.io/badge/chat%20with%20me-on%20Twitter-1da1f2.svg)](https://twitter.com/derhuerst) -- ✅ handles [daylight saving time correctly](#correctness-vs-speed-regarding-gtfs-time-values) but keeps reasonable lookup performance +- ✅ handles [daylight saving time correctly](#correctness-vs-speed-regarding-gtfs-time-values) but provides a reasonable lookup performance - ✅ supports `frequencies.txt` -- ✅ joins `stop_times.txt`/`frequencies.txt`, `calendar.txt`/`calendar_dates.txt`, `trips.txt`, `route.txt` & `stops.txt` into [views](https://www.postgresql.org/docs/14/sql-createview.html) straightforward data analysis +- ✅ joins `stop_times.txt`/`frequencies.txt`, `calendar.txt`/`calendar_dates.txt`, `trips.txt`, `route.txt` & `stops.txt` into [views](https://www.postgresql.org/docs/14/sql-createview.html) for straightforward data analysis ## Installation