From 9301b4b012d3cae1a481320b1460c5bea674fd8c Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sat, 20 Apr 2024 03:13:21 +0200 Subject: add config.yaml.sample file --- .gitignore | 1 + config.yaml | 17 ----------------- config.yaml.sample | 19 +++++++++++++++++++ 3 files changed, 20 insertions(+), 17 deletions(-) delete mode 100644 config.yaml create mode 100644 config.yaml.sample diff --git a/.gitignore b/.gitignore index aff2958..8591317 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ dist-newstyle/* result gtfs.zip +config.yaml diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 123031d..0000000 --- a/config.yaml +++ /dev/null @@ -1,17 +0,0 @@ - - -dbstring: "dbname=tracktrain" -gtfs: "./gtfs.zip" -zoneinfoPath: "/etc/zoneinfo/" - -# generic warp server options (see warp docs) -warp: - port: 9000 - -# only oauth2 with uffd supported (for now) -login: - enable: true - clientname: tracktrain - clientsecret: secret - url: http://localhost:8080 - diff --git a/config.yaml.sample b/config.yaml.sample new file mode 100644 index 0000000..fef8e5e --- /dev/null +++ b/config.yaml.sample @@ -0,0 +1,19 @@ + + +dbstring: "dbname=tracktrain" +gtfs: "gtfs.zip" +zoneinfoPath: "/etc/zoneinfo/" + +assets: ./assets + +# generic warp server options (see warp docs) +warp: + port: 5000 + +# only oauth2 with uffd supported (for now) +login: + enable: false + clientname: tracktrain + clientsecret: secret + url: http://localhost:8080 + -- cgit v1.2.3