From 725eb7d762a54ad4dc3521231993ede59c578098 Mon Sep 17 00:00:00 2001 From: creations Date: Wed, 8 Jan 2025 18:36:17 -0500 Subject: [PATCH] remove dotenv since bun uses process.env --- config/environment.ts | 8 -------- 1 file changed, 8 deletions(-) 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",