fixed .env

This commit is contained in:
Dmitri 2026-06-10 20:45:52 +02:00
parent 97bffdc201
commit 3725d0603c

View File

@ -2,7 +2,8 @@ import fs from 'fs';
import path from 'path';
const __dirname = import.meta.dirname;
const ENV_FILE = path.resolve(__dirname, '..', '..', '.env');
// Path: shared/config -> shared -> src -> backend/.env (3 levels up)
const ENV_FILE = path.resolve(__dirname, '..', '..', '..', '.env');
interface EnvEntry {
key: string;