Internal
Public Access
Replaced all debug print() statements with proper logging framework: - tasks/views.py: 5 print statements → logger.debug() - sync/views.py: 15 print statements → logger.debug() - config/celery.py: 1 print statement → logger.debug() - notifications/tasks.py: 2 print statements → logger.error() Retained print() in settings files (development.py, selfhosted.py) as they are appropriate warnings to stderr for configuration issues. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
39 lines
962 B
Python
39 lines
962 B
Python
"""
|
|
Celery configuration for KeepItGoing.
|
|
"""
|
|
|
|
import logging
|
|
import os
|
|
from celery import Celery
|
|
from celery.schedules import crontab
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Set the default Django settings module
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
|
|
|
app = Celery('keepitgoing')
|
|
|
|
# Load config from Django settings
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
|
|
# Auto-discover tasks in all installed apps
|
|
app.autodiscover_tasks()
|
|
|
|
# Celery Beat schedule for periodic tasks
|
|
app.conf.beat_schedule = {
|
|
'send-due-reminders': {
|
|
'task': 'notifications.tasks.send_due_reminders',
|
|
'schedule': crontab(minute='*/5'), # Every 5 minutes
|
|
},
|
|
'check-overdue-tasks': {
|
|
'task': 'notifications.tasks.check_overdue_tasks',
|
|
'schedule': crontab(hour=8, minute=0), # Daily at 8 AM
|
|
},
|
|
}
|
|
|
|
|
|
@app.task(bind=True)
|
|
def debug_task(self):
|
|
logger.debug(f'Request: {self.request!r}')
|