Files
core_ng/server/dotenv.d.ts
T
2023-08-05 15:34:26 +00:00

12 lines
346 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production';
GAME_DB_HOST: string;
GAME_DB_DATABASE: string;
GAME_DB_PORT: string;
GAME_DB_USER: string;
GAME_DB_PASSWORD: string;
SERVER_PORT: string; //숫자
SESSION_SECRET: string; //길게
}
}