Added the GCLOUD_STORAGE_BUCKET env variable to the envCheck.ts

This commit is contained in:
Mathias Wagner 2022-09-09 01:44:53 +02:00
parent e7b44746e8
commit 1fdf9c84f6
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", "DC_CLIENT", "DC_SECRET", "DC_REDIRECT_URI" "MONGOOSE_STRING", "API_PORT", "SHORTENER_PORT", "CDN_PORT", "AS_PORT", "DC_CLIENT", "DC_SECRET", "DC_REDIRECT_URI", "GCLOUD_STORAGE_BUCKET"
] ]
/** Checks if the provided value is registered in process.env */ /** Checks if the provided value is registered in process.env */