2016-09-03 11:05:50 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-02-26 04:38:20 +00:00
|
|
|
import sys
|
2016-09-03 11:05:50 +00:00
|
|
|
from django.apps import AppConfig
|
2019-02-26 04:38:20 +00:00
|
|
|
from django.dispatch import receiver
|
|
|
|
from django.db.backends.signals import connection_created
|
|
|
|
|
|
|
|
|
2019-07-02 14:08:50 +00:00
|
|
|
@receiver(connection_created)
|
2019-02-26 04:38:20 +00:00
|
|
|
def on_db_connection_ready(sender, **kwargs):
|
|
|
|
from .signals import django_ready
|
|
|
|
if 'migrate' not in sys.argv:
|
|
|
|
django_ready.send(CommonConfig)
|
2019-07-02 14:08:50 +00:00
|
|
|
connection_created.disconnect(on_db_connection_ready)
|
2016-09-03 11:05:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
|
|
name = 'common'
|
2019-06-24 12:16:18 +00:00
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
from . import signals_handlers
|