2024-12-09 17:03:43 -08:00
|
|
|
from app_db import connect_celery_with_app, app, connect_db_with_app
|
|
|
|
|
2024-12-10 10:22:32 -08:00
|
|
|
connect_db_with_app("sqlite:///db.sqlite3", False)
|
2024-12-09 17:03:43 -08:00
|
|
|
connect_celery_with_app()
|
|
|
|
|
|
|
|
celery_app = app.extensions["celery"]
|
|
|
|
|
2024-12-10 10:22:32 -08:00
|
|
|
import jobs.fetch_logstf
|