Skip to content

Commit 44ccb09

Browse files
committed
fix: support celery
1 parent baa297d commit 44ccb09

File tree

12 files changed

+547
-81
lines changed

12 files changed

+547
-81
lines changed

Pipfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7+
celery = {version = "==5.4.0", extras = ["redis"]}
78
cryptography = "==44.0.1"
89
boto3 = "==1.34.162"
910
django = "==4.2.20"
@@ -32,6 +33,7 @@ rapid-router = "==7.3.5" # TODO: remove
3233
phonenumbers = "==8.12.12" # TODO: remove
3334

3435
[dev-packages]
36+
celery-types = "==0.23.0"
3537
black = "==24.8.0"
3638
boto3-stubs = {version = "==1.35.71", extras = ["essential"]}
3739
pytest = "==8.3.3"

Pipfile.lock

Lines changed: 120 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codeforlife/app.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

codeforlife/app/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""
2+
© Ocado Group
3+
Created on 28/03/2025 at 15:37:48(+00:00).
4+
"""
5+
6+
from .celery import CeleryApplication
7+
from .django import DjangoApplication

0 commit comments

Comments
 (0)