initial commit
This commit is contained in:
19
config/celery.py
Normal file
19
config/celery.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import os
|
||||
from celery import Celery
|
||||
|
||||
|
||||
config = {
|
||||
'broker_url': 'redis://127.0.0.1:6379/0',
|
||||
}
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
app = Celery('telegram_bots')
|
||||
|
||||
app.config_from_object(config)
|
||||
app.autodiscover_tasks()
|
||||
|
||||
|
||||
@app.task(bind=True)
|
||||
def debug_task(self):
|
||||
print('Request: {0!r}'.format(self.request))
|
Reference in New Issue
Block a user