From b984352d92e19038181e5ff9e251d6ca802e8857 Mon Sep 17 00:00:00 2001 From: Kevin Alberts Date: Tue, 15 Jul 2025 13:51:09 +0200 Subject: [PATCH] Add drone yml --- .drone.yml | 18 ++++++++++++++++++ README.md | 16 ++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b6da6e5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,18 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: plugins/docker + settings: + registry: git.kurocon.nl + username: + from_secret: docker_username + password: + from_secret: docker_password + repo: git.kurocon.nl/kurocon/gpsmultiplexer + tags: + - latest + diff --git a/README.md b/README.md index e69de29..df5833c 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,16 @@ +GPS Multiplexer +=============== + + +Recieves a request on /ingest, and forwards it to two other services configured via environment variables: + +REITTI_BASE_URL = Base url of first service +REITTI_API_KEY = API key parameter passed to the request (?api_key=YOUR_KEY) + +DAWARICH_BASE_URL = Base url of second service +DAWARICH_API_KEY = API key parameter passed to the request (?api_key=YOUR_KEY) + + +Health check page available on root / +Should return "OK" +