找不到Django + Heroku芹菜模块

时间:2018-03-12 02:10:38

标签: django heroku celery django-celery

我试图将我最新版本的webapp直播到Heroku。我很乐意推向Heroku,这似乎并不合适。出于某种原因,我觉得Heroku正在跳过我的requirements.txt。以防我在我的Heroku应用程序上手动安装芹菜。

我在芹菜中遇到这个特定问题,但如果Heroku正在跳过我的requirements.txt,这可能是一个更大的问题。

1。如果我跑:

heroku run pip install celery

这让我一遍又一遍地安装包裹,不应该反击已经满足的要求"错误?

2。当我尝试推送到heroku时,我不断获得

File "/app/config/_celery.py", line 4, in <module>
from celery import Celery
ModuleNotFoundError: No module named 'celery'

对于我的生活,我无法弄清楚为什么,我已经卸下芹菜,在当地重新安装。它在我的requirements.txt上(Heroku应该在推送到遥控器时安装它)。芹菜似乎在当地工作也很好。

我会包含我认为必要的内容,但如果我遗漏了可能提供答案的内容,请告诉我。

这是我的项目文件结构:

POTRTMS(overall project folder)
|
+-config(holds settings)
|  |
|  +--settings
|  |  |
|  |  __init__.py
|  |  production.py
|  |  local.py
|  |  base.py
|  |
|  _celery.py
|  __init__.py (this is the __init__.py i'm referencing below)

_celery.py

from __future__ import absolute_import, unicode_literals
import sys
import os
from celery import Celery
from celery.schedules import crontab

# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings.production')

app = Celery('POTRTMS')
# Using a string here means the worker don't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
#   should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')

# Load task modules from all registered Django app configs.
app.autodiscover_tasks()

@app.task(bind=True)
def debug_task(self):
  print('Request: {0!r}'.format(self.request))


app.conf.beat_schedule = {
    'insurance_date': {
        'task': 'insurance_date',
        'schedule': crontab(minute=0, hour=8),

    },
}

__ init.py __

from __future__ import absolute_import

from ._celery import app as celery_app

1 个答案:

答案 0 :(得分:2)

我能够找出问题所在。在我的项目根文件夹里面,我有Pipfile和Pipfile.lock,这听起来像是一种新的方法来执行requirements.txt。

我不确定这些文件是如何进入我的项目的,但在删除它们之后一切正常。