File size: 318 Bytes
673435a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys
import os

# Add current dir to path
sys.path.append(os.getcwd())

print(f"PYTHONPATH: {sys.path}")

try:
    print("Attempting to import app.main...")
    from app.main import app
    print("✅ Success!")
except Exception as e:
    print(f"❌ Failed: {e}")
    import traceback
    traceback.print_exc()