diff options
author | stuebinm | 2024-04-20 03:13:21 +0200 |
---|---|---|
committer | stuebinm | 2024-04-20 03:13:21 +0200 |
commit | 9301b4b012d3cae1a481320b1460c5bea674fd8c (patch) | |
tree | 0c03e59a2e9f9dae4e107ac1ad486d9ca98d8a8a | |
parent | e8945c64e99e4b2ce45b49c2ddbc657224988785 (diff) |
add config.yaml.sample file
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | config.yaml.sample (renamed from config.yaml) | 8 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,4 @@ dist-newstyle/* result gtfs.zip +config.yaml diff --git a/config.yaml b/config.yaml.sample index 123031d..fef8e5e 100644 --- a/config.yaml +++ b/config.yaml.sample @@ -1,16 +1,18 @@ dbstring: "dbname=tracktrain" -gtfs: "./gtfs.zip" +gtfs: "gtfs.zip" zoneinfoPath: "/etc/zoneinfo/" +assets: ./assets + # generic warp server options (see warp docs) warp: - port: 9000 + port: 5000 # only oauth2 with uffd supported (for now) login: - enable: true + enable: false clientname: tracktrain clientsecret: secret url: http://localhost:8080 |