Initial YouTube description generation and authentication — work in progress

This commit is contained in:
2025-07-23 20:28:20 -07:00
parent 6c5850b1aa
commit 2f6740eb54
5 changed files with 221 additions and 76 deletions

View File

@ -5,7 +5,8 @@ from dotenv import load_dotenv
load_dotenv()
# debugging flag
DEBUG = True
DEBUG = os.getenv("DEBUG_MODE", "false").lower() == "true"
# 🔧 Project Root
PROJECT_ROOT = Path(__file__).resolve().parent.parent