11 lines
267 B
Python
Raw Normal View History

2018-10-04 14:36:11 +03:00
from django.apps import AppConfig
class YtManagerAppConfig(AppConfig):
2018-10-04 14:36:11 +03:00
name = 'YtManagerApp'
def ready(self):
# Run server using --noreload to avoid having the scheduler run on 2 different processes
from .appmain import main
main()