refactor(all): refactoring to remove monorepo taking to long to get it wokring as intended

This commit is contained in:
2025-02-19 10:06:43 -06:00
parent 5f7a3dd182
commit b15f1d8ae8
28 changed files with 736 additions and 112 deletions

10
load-env.ts Normal file
View File

@@ -0,0 +1,10 @@
const path = require("path");
const dotenv = require("dotenv");
const dotenvExpand = require("dotenv-expand");
// Load the root .env file
const envPath = path.resolve(__dirname, ".env");
const envConfig = dotenv.config({path: envPath});
// Expand variables (e.g., `${VAR}`) in the .env file
dotenvExpand.expand(envConfig);