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
|
|
|
|
|
|
|
|
|
|
|
|
@receiver(connection_created, dispatch_uid="my_unique_identifier")
|
|
|
|
def on_db_connection_ready(sender, **kwargs):
|
|
|
|
from .signals import django_ready
|
|
|
|
if 'migrate' not in sys.argv:
|
|
|
|
django_ready.send(CommonConfig)
|
2016-09-03 11:05:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
|
|
name = 'common'
|