From a23f089a8a1bf7b8be0505d363cd3bd60296aace Mon Sep 17 00:00:00 2001 From: tdurieux Date: Mon, 1 May 2023 14:54:27 +0200 Subject: [PATCH] fix: hotfix for config --- config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.ts b/config.ts index d74b956..a3b6896 100644 --- a/config.ts +++ b/config.ts @@ -1,6 +1,7 @@ import { resolve } from "path"; interface Config { + SESSION_SECRET: string; REDIS_PORT: number; REDIS_HOSTNAME: string; CLIENT_ID: string; @@ -35,6 +36,7 @@ interface Config { RATE_LIMIT: number; } const config: Config = { + SESSION_SECRET: "SESSION_SECRET", CLIENT_ID: "CLIENT_ID", CLIENT_SECRET: "CLIENT_SECRET", GITHUB_TOKEN: "",