properly loading .env file with dotenv

This commit is contained in:
2026-02-05 00:08:59 +03:00
parent 833aad317a
commit 31d198afb8
5 changed files with 20 additions and 0 deletions

View File

@@ -1,9 +1,13 @@
import os
from pathlib import Path
from dotenv import load_dotenv
import click
from loguru import logger
# Load environment variables
load_dotenv()
# Configure logging to output to both file and stdout as specified in requirements
def setup_logging():