8 lines
178 B
Python
8 lines
178 B
Python
import mongoengine
|
|
from django.conf import settings
|
|
|
|
def connect_colio_mongo():
|
|
mongoengine.connect(
|
|
db=settings.MONGODB_NAME,
|
|
host=settings.MONGODB_URI
|
|
) |