Support scripts/.env path

This commit is contained in:
Hamza-Ayed
2026-07-24 16:44:58 +03:00
parent b2261d9192
commit eacd71349e
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ const fs = require('fs');
const path = require('path'); const path = require('path');
// Auto-load .env file if present // Auto-load .env file if present
const envPath = path.resolve(__dirname, '../.env'); const envPath = path.resolve(__dirname, '.env');
if (fs.existsSync(envPath)) { if (fs.existsSync(envPath)) {
const envContent = fs.readFileSync(envPath, 'utf8'); const envContent = fs.readFileSync(envPath, 'utf8');
envContent.split('\n').forEach(line => { envContent.split('\n').forEach(line => {
+1 -1
View File
@@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path'); const path = require('path');
// Auto-load .env file if present // Auto-load .env file if present
const envPath = path.resolve(__dirname, '../.env'); const envPath = path.resolve(__dirname, '.env');
if (fs.existsSync(envPath)) { if (fs.existsSync(envPath)) {
const envContent = fs.readFileSync(envPath, 'utf8'); const envContent = fs.readFileSync(envPath, 'utf8');
envContent.split('\n').forEach(line => { envContent.split('\n').forEach(line => {
+1 -1
View File
@@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path'); const path = require('path');
// Auto-load .env file if present // Auto-load .env file if present
const envPath = path.resolve(__dirname, '../.env'); const envPath = path.resolve(__dirname, '.env');
if (fs.existsSync(envPath)) { if (fs.existsSync(envPath)) {
const envContent = fs.readFileSync(envPath, 'utf8'); const envContent = fs.readFileSync(envPath, 'utf8');
envContent.split('\n').forEach(line => { envContent.split('\n').forEach(line => {
+1 -1
View File
@@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path'); const path = require('path');
// Auto-load .env file if present // Auto-load .env file if present
const envPath = path.resolve(__dirname, '../.env'); const envPath = path.resolve(__dirname, '.env');
if (fs.existsSync(envPath)) { if (fs.existsSync(envPath)) {
const envContent = fs.readFileSync(envPath, 'utf8'); const envContent = fs.readFileSync(envPath, 'utf8');
envContent.split('\n').forEach(line => { envContent.split('\n').forEach(line => {