From ae531c445df6bdb56f955db60b879815d1b81589 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 23 Nov 2022 13:25:52 +0100 Subject: [PATCH] fix: remove hardcoded sentry dsn --- apps/api/.env.example | 1 - apps/api/src/index.ts | 5 ----- 2 files changed, 6 deletions(-) diff --git a/apps/api/.env.example b/apps/api/.env.example index 800c40929..fcfaf2159 100644 --- a/apps/api/.env.example +++ b/apps/api/.env.example @@ -2,7 +2,6 @@ COOLIFY_APP_ID=local-dev # 32 bits long secret key COOLIFY_SECRET_KEY=12341234123412341234123412341234 COOLIFY_DATABASE_URL=file:../db/dev.db -COOLIFY_SENTRY_DSN= COOLIFY_IS_ON=docker COOLIFY_WHITE_LABELED=false diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index 4ae4cd9cc..133db9152 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -26,7 +26,6 @@ declare module 'fastify' { COOLIFY_APP_ID: string, COOLIFY_SECRET_KEY: string, COOLIFY_DATABASE_URL: string, - COOLIFY_SENTRY_DSN: string, COOLIFY_IS_ON: string, COOLIFY_WHITE_LABELED: string, COOLIFY_WHITE_LABELED_ICON: string | null, @@ -58,10 +57,6 @@ const host = '0.0.0.0'; type: 'string', default: 'file:../db/dev.db' }, - COOLIFY_SENTRY_DSN: { - type: 'string', - default: null - }, COOLIFY_IS_ON: { type: 'string', default: 'docker'