add features

This commit is contained in:
Auto
2025-12-31 12:35:34 +02:00
parent 6c99e40408
commit e7fc23a67e
3 changed files with 39 additions and 16 deletions

View File

@@ -28,8 +28,14 @@ import time
import webbrowser
from pathlib import Path
from dotenv import load_dotenv
ROOT = Path(__file__).parent.absolute()
# Load environment variables from .env file
# This ensures env vars like PROGRESS_N8N_WEBHOOK_URL are available to subprocesses
load_dotenv(ROOT / ".env")
VENV_DIR = ROOT / "venv"
UI_DIR = ROOT / "ui"