refactor: move .env file to scripts directory

This commit is contained in:
Gigi
2025-11-07 14:47:49 +01:00
parent 52be65e382
commit a91aa87ef9
2 changed files with 11 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
MARKDOWN_DIR="$PROJECT_ROOT/test/markdown"
ENV_FILE="$PROJECT_ROOT/.env"
ENV_FILE="$SCRIPT_DIR/.env"
# Load .env file if it exists
if [ -f "$ENV_FILE" ]; then