fix scheduler: add python path for src module

This commit is contained in:
flo-eberle
2026-02-15 12:57:10 +01:00
parent 1cda64aecc
commit e8d53583d9

View File

@@ -6,6 +6,12 @@ Runs every 6 hours and sends notifications for new results
import time
import logging
import sys
import os
# Add src to Python path
sys.path.append('/app')
from apscheduler.schedulers.background import BackgroundScheduler
from src.main import FlatScraper