mirror of
https://github.com/khairul169/github-leaderboard.git
synced 2025-04-28 15:39:31 +07:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
//
|
|
|
|
export const __PROD = import.meta.env.NODE_ENV === "production";
|
|
export const __DEV = !__PROD;
|
|
|
|
export const BULLMQ_CONNECTION = {
|
|
host: import.meta.env.REDIS_HOST || "127.0.0.1",
|
|
port: Number(import.meta.env.REDIS_PORT) || 6379,
|
|
};
|
|
export const BULLMQ_JOB_NAME = "ghcontribjob";
|
|
|
|
export const JWT_SECRET = import.meta.env.JWT_SECRET || "secret";
|