9 lines
202 B
Python
9 lines
202 B
Python
import mongoengine
|
|
from django.conf import settings
|
|
|
|
def connect_colio_mongo():
|
|
mongoengine.connect(
|
|
db=settings.MONGODB_NAME,
|
|
host=settings.MONGODB_URI,
|
|
tz_aware=True,
|
|
) |