django与mongo和postgres的联系

时间:2018-02-14 04:51:51

标签: django mongodb postgresql django-models

我需要在djangomongodbpostgresql连接到我的网络应用程序,对它进行CRUD操作,这是git hub上的项目代码

Here是我与mongodb建立连接的文件(不起作用)。

this是项目的链接

1 个答案:

答案 0 :(得分:0)

以下是设置Mongo DB和PostgreSQL可能有用的信息。

对于Mongo DB连接设置,

DATABASES = {
  'default' : {
  'ENGINE' : 'django_mongodb_engine',
  'NAME' : 'my_database'
}}

对于PostgreSQL连接设置,

DATABASES = {
'default': {
    'ENGINE': 'django.db.backends.postgresql_psycopg2',
    'NAME': 'your_project_name',
    'USER': 'project_user',
    'PASSWORD': 'password',
    'HOST': 'localhost',
    'PORT': '',
}}

必须在settings.py文件中添加连接设置。希望你知道。