This commit is contained in:
beabigegg
2025-11-13 08:18:15 +08:00
parent 788e2409df
commit df5411e44c
38 changed files with 1163 additions and 445 deletions

View File

@@ -3,6 +3,13 @@
import eventlet
eventlet.monkey_patch()
# Import basic modules only
import os
import sys
# Add current directory to Python path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from dotenv import load_dotenv
# Load environment variables BEFORE creating the app
load_dotenv()