add support for .env with python-dotenv

This commit is contained in:
Mathieu Dupuis
2025-04-06 17:07:47 -04:00
parent 6c574db77d
commit a07b94fc3b
3 changed files with 6 additions and 0 deletions

View File

@@ -1,8 +1,11 @@
import dotenv
import os
import argparse
# Import the function that creates the flow
from flow import create_tutorial_flow
dotenv.load_dotenv()
# Default file patterns
DEFAULT_INCLUDE_PATTERNS = {
"*.py", "*.js", "*.ts", "*.go", "*.java", "*.pyi", "*.pyx",