Bases: AppConfig
Class representing the configuration for the vast_pipeline app.
Source code in vast_pipeline/apps.py
| class PipelineConfig(AppConfig):
"""Class representing the configuration for the vast_pipeline app."""
name = 'vast_pipeline'
def ready(self) -> None:
"""Initialization tasks performed as soon as the app registry is populated.
See <https://docs.djangoproject.com/en/3.1/ref/applications/#django.apps.AppConfig.ready>.
"""
# import the signals to register them with the application
import vast_pipeline.signals # noqa: F401
|
ready()
Initialization tasks performed as soon as the app registry is populated. See https://docs.djangoproject.com/en/3.1/ref/applications/#django.apps.AppConfig.ready.
Source code in vast_pipeline/apps.py
| def ready(self) -> None:
"""Initialization tasks performed as soon as the app registry is populated.
See <https://docs.djangoproject.com/en/3.1/ref/applications/#django.apps.AppConfig.ready>.
"""
# import the signals to register them with the application
import vast_pipeline.signals # noqa: F401
|