From 1678865b12d5c915a14f9f22fbd82324318c3143 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 5 Jun 2025 18:26:45 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Feat:=20[#64]=20=EB=85=B8=EC=BD=94?= =?UTF-8?q?=EB=93=9C=ED=88=B4=20=EC=9A=94=EC=B2=AD=20url=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/urls.py b/config/urls.py index 0e2116a..2507916 100644 --- a/config/urls.py +++ b/config/urls.py @@ -5,12 +5,13 @@ from django.conf import settings from django.conf.urls.static import static urlpatterns = [ - path('admin/', admin.site.urls), + # path('admin/', admin.site.urls), path('api/user/', include('users.urls')), path('api/code/', include('codes.urls')), path('api/portfolio/', include('portfolios.urls')), path('api/project/', include('projects.urls')), path('api/notification/', include('notifications.urls')), + path('api/nocodetool/', include('nocodetools.urls')), ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) # if settings.DEBUG: