From 40e9af078a9b8db4a191205e3ae87f31645a4be0 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Sat, 31 May 2025 00:56:15 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#63]=20mongoDB=20=EC=97=B0?= =?UTF-8?q?=EB=8F=99=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nocodetools/apps.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nocodetools/apps.py diff --git a/nocodetools/apps.py b/nocodetools/apps.py new file mode 100644 index 0000000..58fae68 --- /dev/null +++ b/nocodetools/apps.py @@ -0,0 +1,9 @@ +from django.apps import AppConfig +from common.utils.mongodb import connect_colio_mongo + +class NocodetoolsConfig(AppConfig): + # default_auto_field = 'django.db.models.BigAutoField' + name = 'nocodetools' + + def ready(self): + connect_colio_mongo()