This commit is contained in:
2026-06-24 15:34:09 +02:00
commit 65fb6816ca
442 changed files with 27246 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
DATABASE_URL: string;
REDIS_URL: string;
SESSION_SECRET: string;
API_PORT: string;
FRONTEND_ORIGIN: string;
BACKEND_ORIGIN: string;
SMTP_HOST: string;
SMTP_PORT: string;
SMTP_SECURE: string;
SMTP_USER: string;
SMTP_PASS: string;
}
}
}
export {}