12 lines
332 B
Python
12 lines
332 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class BlogConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "blog"
|
|
verbose_name = _("blog")
|
|
|
|
def ready(self):
|
|
import blog.elasticsearch.documents
|
|
import blog.signals # noqa: F401
|