(add, done): add email smtp service and auth service done!

This commit is contained in:
behruz-dev
2025-08-26 11:20:41 +05:00
parent 8feea731b9
commit b46b9975ba
13 changed files with 199 additions and 16 deletions

8
config/conf/celery.py Normal file
View File

@@ -0,0 +1,8 @@
from django.conf import settings
CELERY_BROKER_URL = 'redis://redis:6379'
CELERY_RESULT_BACKEND = "redis://redis:6379"
CELERY_ACCEPT_CONTENT = ['json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_TIMEZONE = settings.TIME_ZONE
CELERY_ENABLED = True