This commit is contained in:
Sebastian Seedorf
2020-11-16 12:40:47 +01:00
parent 2629d1e8e9
commit 8d35ced40f
36 changed files with 134 additions and 721 deletions

17
out/config.d.ts vendored
View File

@@ -1,17 +0,0 @@
declare function requireEnv(name: string, onlyInProduction?: boolean): void;
export declare const DefaultConfig: {
EXTERNAL_BASE_URL: string;
isProduction: boolean;
requireEnv: typeof requireEnv;
NODE_ENV: string;
PORT: number;
HOSTNAME: string;
BASE_PATH: string;
REDIS_URL: string | undefined;
SESSION_SECRET: string | undefined;
USERINFO_HEADER: string | undefined;
AUTH_PROXY_URL: string | undefined;
AUTH_PROXY_USERINFO_URL: string | undefined;
AUTH_PROXY_INIT_LOGOUT_URL: string | undefined;
};
export {};