From d8ac9d994aeadc2a773f1767b28e63079b1eef3e Mon Sep 17 00:00:00 2001 From: farshad68 Date: Tue, 16 Jun 2026 12:12:56 +0200 Subject: [PATCH 1/3] add EV --- learn2rag/ui/templates/compose/pipelines/continuous.yml | 1 + learn2rag/ui/templates/compose/pipelines/import.yml | 1 + learn2rag/ui/templates/compose/pipelines/pipeline.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/learn2rag/ui/templates/compose/pipelines/continuous.yml b/learn2rag/ui/templates/compose/pipelines/continuous.yml index b1ae969..3804c5c 100644 --- a/learn2rag/ui/templates/compose/pipelines/continuous.yml +++ b/learn2rag/ui/templates/compose/pipelines/continuous.yml @@ -184,6 +184,7 @@ services: - '{{storage_path}}/importer_config.json' - '--delta' environment: + DO_NOT_TRACK: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' STORAGE_PATH: '{{storage_path}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}' diff --git a/learn2rag/ui/templates/compose/pipelines/import.yml b/learn2rag/ui/templates/compose/pipelines/import.yml index fe9302b..23db9c5 100644 --- a/learn2rag/ui/templates/compose/pipelines/import.yml +++ b/learn2rag/ui/templates/compose/pipelines/import.yml @@ -118,6 +118,7 @@ services: - '{{storage_path}}/importer_config.json' - '--delta' environment: + DO_NOT_TRACK: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' STORAGE_PATH: '{{storage_path}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}' diff --git a/learn2rag/ui/templates/compose/pipelines/pipeline.yml b/learn2rag/ui/templates/compose/pipelines/pipeline.yml index 1c77961..b28e803 100644 --- a/learn2rag/ui/templates/compose/pipelines/pipeline.yml +++ b/learn2rag/ui/templates/compose/pipelines/pipeline.yml @@ -177,6 +177,7 @@ services: - '--logging-config' - '{{storage_path}}/logging_config.yml' environment: + DO_NOT_TRACK: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' LEARN2RAG_PIPELINE_PORT: '{{ports.pipeline}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}' From ba56901306d71a6de48c1e9cdc587a6109beac04 Mon Sep 17 00:00:00 2001 From: farshad68 Date: Wed, 17 Jun 2026 12:54:50 +0200 Subject: [PATCH 2/3] also add DO_NOT_TRACK to test workflow --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d90ec46..7d7420b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: main: runs-on: ubuntu-latest env: - SCARF_NO_ANALYTICS: "true" + DO_NOT_TRACK: "true" steps: - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 with: From 1c892c191e1c94d83e5e65c32d192bf2ccf27142 Mon Sep 17 00:00:00 2001 From: farshad68 Date: Thu, 25 Jun 2026 14:03:54 +0200 Subject: [PATCH 3/3] add SCARF_NO_ANALYTICS too --- .github/workflows/test.yml | 1 + learn2rag/ui/templates/compose/pipelines/continuous.yml | 1 + learn2rag/ui/templates/compose/pipelines/import.yml | 1 + learn2rag/ui/templates/compose/pipelines/pipeline.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d7420b..ecad09b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,7 @@ jobs: runs-on: ubuntu-latest env: DO_NOT_TRACK: "true" + SCARF_NO_ANALYTICS: "true" steps: - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 with: diff --git a/learn2rag/ui/templates/compose/pipelines/continuous.yml b/learn2rag/ui/templates/compose/pipelines/continuous.yml index 3804c5c..6ef082b 100644 --- a/learn2rag/ui/templates/compose/pipelines/continuous.yml +++ b/learn2rag/ui/templates/compose/pipelines/continuous.yml @@ -185,6 +185,7 @@ services: - '--delta' environment: DO_NOT_TRACK: 'true' + SCARF_NO_ANALYTICS: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' STORAGE_PATH: '{{storage_path}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}' diff --git a/learn2rag/ui/templates/compose/pipelines/import.yml b/learn2rag/ui/templates/compose/pipelines/import.yml index 23db9c5..02ff2ef 100644 --- a/learn2rag/ui/templates/compose/pipelines/import.yml +++ b/learn2rag/ui/templates/compose/pipelines/import.yml @@ -119,6 +119,7 @@ services: - '--delta' environment: DO_NOT_TRACK: 'true' + SCARF_NO_ANALYTICS: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' STORAGE_PATH: '{{storage_path}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}' diff --git a/learn2rag/ui/templates/compose/pipelines/pipeline.yml b/learn2rag/ui/templates/compose/pipelines/pipeline.yml index b28e803..c3f486a 100644 --- a/learn2rag/ui/templates/compose/pipelines/pipeline.yml +++ b/learn2rag/ui/templates/compose/pipelines/pipeline.yml @@ -178,6 +178,7 @@ services: - '{{storage_path}}/logging_config.yml' environment: DO_NOT_TRACK: 'true' + SCARF_NO_ANALYTICS: 'true' LEARN2RAG_PATH: '{{learn2rag_path}}' LEARN2RAG_PIPELINE_PORT: '{{ports.pipeline}}' QDRANT_LOCATION: '{{ pipeline.qdrant_location or "http://localhost:" ~ ports.qdrant_http }}'