From 60cb986cbecc59c45c8246bd6bb53a27a8342f55 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Thu, 12 May 2022 18:12:17 +0200 Subject: [PATCH] :sparkles: Switched from sentry to GlitchTip --- classquiz/config.py | 2 +- frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/classquiz/config.py b/classquiz/config.py index e93f769..f0c75a6 100644 --- a/classquiz/config.py +++ b/classquiz/config.py @@ -25,7 +25,7 @@ class Settings(BaseSettings): secret_key: str access_token_expire_minutes: int = 30 cache_expiry: int = 86400 - sentry_dsn: str | None = "https://4981de1f72f24fd7b5e21b8913b93a02@o661934.ingest.sentry.io/6254641" + sentry_dsn: str | None meilisearch_url: str meilisearch_index: str = "classquiz" diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 806d216..5b3684e 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -7,7 +7,7 @@ ENV REDIS_URL=CHANGE_ME ENV VITE_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoibWF3b2thIiwiYSI6ImNsMjBob3d4ZjBhcGszYnE0bWp4aXB1ZW4ifQ.IByxV1qeIuEWpHCWsuB88A # This Mpbox-token is restricted to the following urls: classquiz.de, classquiz.mawoka.eu, test.com ENV VITE_HCAPTCHA=ee81b2a1-acf3-4d20-b2a4-a7ea94c7eba5 -ENV VITE_SENTRY=https://4981de1f72f24fd7b5e21b8913b93a02@o661934.ingest.sentry.io/6254641 +ENV VITE_SENTRY=https://75cb4ef1be624d8f81bbaf864b722f8a@glitch.mawoka.eu/2 # change working directory WORKDIR /usr/src/app