2019-01-11 19:16:01 +00:00
|
|
|
import os
|
|
|
|
from celery import Celery
|
|
|
|
|
|
|
|
|
|
|
|
config = {
|
2019-01-19 02:54:51 +00:00
|
|
|
'broker_url': 'redis://127.0.0.1:6379/1',
|
2019-01-11 19:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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))
|