mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 06:57:12 +01:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
const { GITHUB_CLIENT_SECRET, GITHUB_CLIENT_ID } = process.env;
|
|
|
|
export function getConfig() {
|
|
return {
|
|
githubAuthEnabled: Boolean(GITHUB_CLIENT_SECRET?.length && GITHUB_CLIENT_ID?.length),
|
|
};
|
|
} |