first commit
Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 0s
CI/CD Pipeline / Code Quality Checks (push) Failing after 1m43s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped

This commit is contained in:
2026-01-21 12:07:35 +01:00
commit e9d7f24aaa
102 changed files with 13890 additions and 0 deletions

42
src/config/celery.py Normal file
View File

@@ -0,0 +1,42 @@
"""
Celery configuration for the project.
This module contains Celery configuration and task registration.
"""
import os
from celery import Celery
# Set the default Django settings module for the 'celery' program.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.development")
app = Celery("project")
# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
# should have a `CELERY_` prefix.
app.config_from_object("django.conf:settings", namespace="CELERY")
# Load task modules from all registered Django apps.
app.autodiscover_tasks()
# Configure Celery Beat schedule
app.conf.beat_schedule = {
"check-pending-scraping-jobs": {
"task": "apps.scraping.tasks.check_pending_jobs",
"schedule": 300.0, # Every 5 minutes
},
"process-extracted-data": {
"task": "apps.data_processor.tasks.process_extracted_data",
"schedule": 600.0, # Every 10 minutes
},
}
app.conf.timezone = "UTC"
@app.task(bind=True)
def debug_task(self):
print(f"Request: {self.request!r}")