Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,12 @@
|
|
| 2 |
from __future__ import annotations
|
| 3 |
|
| 4 |
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
from calls_analyser.ui import config as ui_config
|
| 7 |
from calls_analyser.ui.dependencies import build_dependencies
|
|
|
|
| 2 |
from __future__ import annotations
|
| 3 |
|
| 4 |
import os
|
| 5 |
+
from dotenv import load_dotenv
|
| 6 |
+
|
| 7 |
+
load_dotenv()
|
| 8 |
+
|
| 9 |
+
print(f"DEBUG: CWD is {os.getcwd()}")
|
| 10 |
+
print(f"DEBUG: SUPABASE_URL present: {bool(os.environ.get('SUPABASE_URL'))}")
|
| 11 |
|
| 12 |
from calls_analyser.ui import config as ui_config
|
| 13 |
from calls_analyser.ui.dependencies import build_dependencies
|