Merge pull request #36356 from openedx/feanil/update_minimal_config

fix: Be able to run celery tasks on baremetal.
This commit is contained in:
Feanil Patel
2025-03-11 09:56:29 -04:00
committed by GitHub

View File

@@ -40,3 +40,7 @@ API_ACCESS_MANAGER_EMAIL: "api-access@example.com"
# So that you can login to studio on bare-metal
SOCIAL_AUTH_EDX_OAUTH2_URL_ROOT: 'http://localhost:18000'
# The celery broker url needs to be set even if you're running in always eager mode.
CELERY_BROKER_TRANSPORT: 'memory'
CELERY_BROKER_HOSTNAME: 'localhost'