diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d90ec46..ecad09b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,6 +4,7 @@ jobs: main: runs-on: ubuntu-latest env: + DO_NOT_TRACK: "true" SCARF_NO_ANALYTICS: "true" steps: - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 diff --git a/learn2rag/ui/templates/compose/pipelines/continuous.yml b/learn2rag/ui/templates/compose/pipelines/continuous.yml index b1ae969..6ef082b 100644 --- a/learn2rag/ui/templates/compose/pipelines/continuous.yml +++ b/learn2rag/ui/templates/compose/pipelines/continuous.yml @@ -184,6 +184,8 @@ services: - '{{storage_path}}/importer_config.json' - '--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 fe9302b..02ff2ef 100644 --- a/learn2rag/ui/templates/compose/pipelines/import.yml +++ b/learn2rag/ui/templates/compose/pipelines/import.yml @@ -118,6 +118,8 @@ services: - '{{storage_path}}/importer_config.json' - '--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 1c77961..c3f486a 100644 --- a/learn2rag/ui/templates/compose/pipelines/pipeline.yml +++ b/learn2rag/ui/templates/compose/pipelines/pipeline.yml @@ -177,6 +177,8 @@ services: - '--logging-config' - '{{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 }}'