Update app.py
Browse files
app.py
CHANGED
|
@@ -86,6 +86,10 @@ try:
|
|
| 86 |
import sys
|
| 87 |
# Ensure local modules are importable
|
| 88 |
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
|
| 90 |
from apscheduler.schedulers.background import BackgroundScheduler
|
| 91 |
import run_daily_batch
|
|
|
|
| 86 |
import sys
|
| 87 |
# Ensure local modules are importable
|
| 88 |
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
| 89 |
+
print(f"DEBUG: sys.path is {sys.path}")
|
| 90 |
+
print(f"DEBUG: Directory contents of {os.getcwd()}: {os.listdir(os.getcwd())}")
|
| 91 |
+
|
| 92 |
+
from apscheduler.schedulers.background import BackgroundScheduler
|
| 93 |
|
| 94 |
from apscheduler.schedulers.background import BackgroundScheduler
|
| 95 |
import run_daily_batch
|