Integrating Dagster with Django ORM
I want to integrate Dagster into ongoing Django project. Dagster runs out of Django context and eventually there is no way to directly access django ORM without calling django.setup()
somewhere, I did it in init of my app., but this is not acceptable because it breaks app execution (like runserver
)
Category Data Science