Skip to content

jcarranz97/celery-learning

Repository files navigation

Celery Learning

Commands:

  • docker-compose up --build
  • Keep Docker running (detached): docker-compose up -d
  • Shutdown dockers: docker-compose down

When adding a worker that is not inside the docker, we can use

celery_app = Celery(
    "tasks",
    broker="redis://localhost:6379/0",
    backend="redis://localhost:6379/0",
    include=[
        "group1.tasks",
        "group2.tasks",
    ],
)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published