ソーシャル ネットワークの Django プロジェクトに 2 つのデータベースを作成したいと考えていますsettings.py
。
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mylife',
'USER': 'root',
'PASSWORD': 'mypassword',
'HOST': '',
'PORT': '',
}
}
NEO4J_DATABSES = {
'default':{
'HOST':'localhost' ,
'PORT':7474,
'ENDPOINT':'db/data'
}
}
neo4djangoドキュメントNEO4J_DATABSES
に従ってセクションを追加しますが、実行すると以下のエラーが発生しました:pyhon manage.py syncdb
AttributeError: 'Settings' object has no attribute 'NEO4J_DATABASES'
そして、python manage.py shell
これらのコードを書くときに何かをテストするために書くと、同じエラーが発生しました:
>>> from neo4django.db import models
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/neo4django-0.1.8-py2.7.egg/neo4django /db/__init__.py", line 95, in <module>
if not _settings.NEO4J_DATABASES:
File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", line 54, in __getattr__
return getattr(self._wrapped, name)
AttributeError: 'Settings' object has no attribute 'NEO4J_DATABASES'