我想在 heroku 上部署 Django 应用程序。当我尝试同步数据库本地时,我收到错误消息:
ImportError: Could not import settings 'aplikacjaKZ.settings' (Is it on sys.path?): No module named dj_database_url
我安装了 dj 数据库 url。这是我的需求文件:
Django==1.5.1
argparse==1.2.1
distribute==0.6.34
dj-database-url==0.2.2
dj-static==0.0.5
django-toolbelt==0.0.1
gunicorn==17.5
psycopg2==2.5.1
static==0.4
wsgiref==0.1.2
这是我的设置:
DATABASES = {'default': dj_database_url.config(default='postgres://localhost')}
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/var/db/appKZ',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}