From c9dca1d0714e5ae03d79fcc5ebff92e2bbea4ddd Mon Sep 17 00:00:00 2001 From: Flagabat Date: Mon, 27 Apr 2026 23:21:44 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20pipeline-runner=20=E2=80=94=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_runner/config.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pipeline_runner/config.py diff --git a/pipeline_runner/config.py b/pipeline_runner/config.py new file mode 100644 index 0000000..578b9a5 --- /dev/null +++ b/pipeline_runner/config.py @@ -0,0 +1,7 @@ +import os +from pathlib import Path + +GDRIVE_REMOTE = os.getenv("GDRIVE_REMOTE", "gdrive:Cosma - Internal/06-Operations/06 - Sorties") +OUTPUT_DIR = Path(os.getenv("OUTPUT_DIR", "/data/sorties")) +TOOLS_DIR = Path(os.getenv("TOOLS_DIR", Path(__file__).parent.parent / "tools")) +LTTB_MAX_PTS = 4000