运行示例
首先下载代码,代码的位于 Github repository,接着执行以下的命令:
$ git clone https://github.com/miguelgrinberg/flask-celery-example.git
$ cd flask-celery-example
$ virtualenv venv
$ source venv/bin/activate
(venv) $ pip install -r requirements.txt
接着,启动 redis,关于 redis 的安装,启动以及配置,请参阅 Redis 文档。
最后,执行如下命令运行示例:
$ export MAIL_USERNAME=<your-gmail-username>
$ export MAIL_PASSWORD=<your-gmail-password>
$ source venv/bin/activate
(venv) $ celery worker -A app.celery --loglevel=info
运行你的 Flask 应用来感受 Flask 和 Celery 一起工作的快乐:
$ source venv/bin/activate
(venv) $ python app.py
当前内容版权归 wizardforcel 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 wizardforcel .