This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
2023-11-12 21:26:31 +03:00

11 lines
303 B
TypeScript

import 'dotenv/config';
import { cleanEnv, str } from 'envalid';
export const env = cleanEnv(process.env, {
NODE_ENV: str({ choices: ["development", "production"] }),
LOG_LEVEL: str({
choices: ["trace", "debug", "info", "warn", "error", "fatal", "silent"],
}),
TOKEN: str()
});