From 16dd501d4ed8a3b6a1171e4be42739cfcdf9f623 Mon Sep 17 00:00:00 2001 From: Nathan Richards Date: Thu, 7 May 2026 18:30:10 +0200 Subject: [PATCH] chore: remove unneeded plausible env vars --- .env.example | 2 -- .github/workflows/ci-cd.yml | 3 --- .github/workflows/deploy.yml | 10 ---------- 3 files changed, 15 deletions(-) diff --git a/.env.example b/.env.example index 52fa20934..8b7c0356a 100644 --- a/.env.example +++ b/.env.example @@ -6,6 +6,4 @@ ASSETS_URL='http://localhost:3011' HTML_RENDERER_URL='http://localhost:3011' REACT_APP_GOOGLE_TAG_MANAGER_ID='' REACT_APP_API_ENDPOINT='http://localhost:3009' -REACT_APP_PLAUSIBLE_DATA_DOMAIN='' -REACT_APP_PLAUSIBLE_SOURCE='' REACT_APP_ALLOWED_IFRAME_ORIGINS='http://localhost:3011,http://localhost:3012,http://classroom.localhost:3012' diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 047aad183..1eabf0edd 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -113,7 +113,6 @@ jobs: REACT_APP_API_ENDPOINT: "https://test-editor-api.raspberrypi.org" PUBLIC_URL: "http://localhost:3011" ASSETS_URL: "http://localhost:3011" - REACT_APP_PLAUSIBLE_SOURCE: "" REACT_APP_ALLOWED_IFRAME_ORIGINS: "http://localhost:3011" - name: Archive cypress artifacts @@ -137,8 +136,6 @@ jobs: react_app_authentication_url: https://auth-v1.raspberrypi.org react_app_base_url: "" react_app_google_tag_manager_id: GTM-5FWFWFJ - react_app_plausible_data_domain: "editor.raspberrypi.org" - react_app_plausible_source: "https://plausible.io/js/script.js" react_app_sentry_dsn: https://a6d7b79c7a474a6499ace73acf792a83@o17504.ingest.sentry.io/4504055099621376 react_app_sentry_env: production react_app_allowed_iframe_origins: "https://editor.raspberrypi.org,https://editor-static.raspberrypi.org,https://classroom.raspberrypi.org" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b6c537845..b9e916af8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -46,14 +46,6 @@ on: required: false default: "" type: string - react_app_plausible_data_domain: - required: false - default: "staging-editor-static.raspberrypi.org" - type: string - react_app_plausible_source: - required: false - default: "https://staging-analytics.raspberrypi.org/js/plausible.js" - type: string react_app_sentry_dsn: required: false default: "https://a6d7b79c7a474a6499ace73acf792a83@o17504.ingest.sentry.io/4504055099621376" @@ -157,8 +149,6 @@ jobs: REACT_APP_BASE_URL: ${{ needs.setup-environment.outputs.react_app_base_url }} REACT_APP_COOKIEBOT_DOMAIN_GROUP_ID: ${{ inputs.react_app_cookiebot_domain_group_id }} REACT_APP_GOOGLE_TAG_MANAGER_ID: ${{ inputs.react_app_google_tag_manager_id }} - REACT_APP_PLAUSIBLE_DATA_DOMAIN: ${{ inputs.react_app_plausible_data_domain }} - REACT_APP_PLAUSIBLE_SOURCE: ${{ inputs.react_app_plausible_source }} REACT_APP_SENTRY_DSN: ${{ inputs.react_app_sentry_dsn }} REACT_APP_SENTRY_ENV: ${{ inputs.react_app_sentry_env }} REACT_APP_ALLOWED_IFRAME_ORIGINS: ${{ inputs.react_app_allowed_iframe_origins }}