diff --git a/config/environment.ts b/config/environment.ts index 485d3c7..cdf6a3c 100644 --- a/config/environment.ts +++ b/config/environment.ts @@ -1,13 +1,5 @@ -import dotenv from "dotenv"; - import { logger } from "@/helpers/logger"; -try { - dotenv.config(); -} catch { - logger.error("No .env file found consider creating one"); -} - export const environment: Environment = { port: parseInt(process.env.PORT || "6600", 10), host: process.env.HOST || "0.0.0.0",