mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-03-10 18:36:41 -04:00
11 lines
335 B
Python
11 lines
335 B
Python
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
|
|
class AdventuresConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'adventures'
|
|
|
|
# def ready(self):
|
|
# if settings.SCHEDULER_AUTOSTART:
|
|
# from .scheduler import start_scheduler
|
|
# start_scheduler() |