mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 18:39:46 +00:00
20 lines
520 B
Python
20 lines
520 B
Python
import os
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class LettersConfig(AppConfig):
|
|
name = "letters"
|
|
|
|
def ready(self):
|
|
"""
|
|
Start the scheduler only when the server is starting.
|
|
NOTE: If we don't check for RUN_MAIN, the scheduler triggers for all django operations (migration, test etc.)
|
|
"""
|
|
|
|
if not (os.environ.get("RUN_MAIN") == "true" or os.environ.get("WERKZEUG_RUN_MAIN") == "true"):
|
|
return
|
|
from .tasks import start_scheduler
|
|
|
|
start_scheduler()
|