mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 18:26:34 +02:00
21 lines
490 B
TypeScript
21 lines
490 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
DATABASE_URL: string;
|
|
NODE_ENV: "development" | "production";
|
|
JWT_SECRET: string;
|
|
MAINTENANCE_MODE?: "true";
|
|
PLAUSIBLE_DOMAIN?: string;
|
|
NEXT_PUBLIC_CRISP_WEBSITE_ID?: string;
|
|
LEGACY_MONGODB_URI?: string;
|
|
SUPPORT_EMAIL: string;
|
|
SMTP_HOST: string;
|
|
SMTP_USER: string;
|
|
SMTP_PWD: string;
|
|
SMTP_SECURE: string;
|
|
SMTP_PORT: string;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|