From 0d83a0f670f7353040d3cd4252d5935161af78d1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 7 Nov 2023 09:16:14 +0100 Subject: [PATCH] Added new values to the envCheck.ts --- util/envCheck.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/envCheck.ts b/util/envCheck.ts index a4c49a4..aa7ee34 100644 --- a/util/envCheck.ts +++ b/util/envCheck.ts @@ -2,7 +2,8 @@ import * as fs from "fs"; const envValue: string[] = [ - "MONGOOSE_STRING", "API_PORT", "SHORTENER_PORT", "CDN_PORT", "AS_PORT", "DC_CLIENT", "DC_SECRET", "DC_REDIRECT_URI", "GCLOUD_STORAGE_BUCKET" + "DB_NAME", "DB_USER", "DB_PASS", "DB_HOST", "API_PORT", "SHORTENER_PORT", "CDN_PORT", "DC_CLIENT", + "DC_SECRET", "DC_REDIRECT_URI", "GCLOUD_STORAGE_BUCKET" ] /** Checks if the provided value is registered in process.env */