Added the discord client id, secret & redirect uri as environment values to the envCheck util

This commit is contained in:
Mathias Wagner 2022-09-08 23:54:50 +02:00
parent 846ed71982
commit 0555645573
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -2,7 +2,7 @@
import * as fs from "fs"; import * as fs from "fs";
const envValue: string[] = [ const envValue: string[] = [
"MONGOOSE_STRING", "API_PORT", "SHORTENER_PORT", "CDN_PORT", "AS_PORT" "MONGOOSE_STRING", "API_PORT", "SHORTENER_PORT", "CDN_PORT", "AS_PORT", "DC_CLIENT", "DC_SECRET", "DC_REDIRECT_URI"
] ]
/** Checks if the provided value is registered in process.env */ /** Checks if the provided value is registered in process.env */