From 1ee6b890efb68a5ca153bc7c0a5fba2f3a5ac1b3 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sat, 25 Apr 2020 12:58:31 -0400 Subject: [PATCH] remove snippets urls for now --- .vscode/launch.json | 13 ++++++++++++- config/urls.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 70f577b..0be33c4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: Django", + "name": "Test", "type": "python", "request": "launch", "program": "${workspaceFolder}/manage.py", @@ -13,6 +13,17 @@ "test", ], "django": true + }, + { + "name": "Run Server", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/manage.py", + "args": [ + "runserver", + "--noreload" + ], + "django": true } ] } \ No newline at end of file diff --git a/config/urls.py b/config/urls.py index fb9669b..20aaa7e 100644 --- a/config/urls.py +++ b/config/urls.py @@ -18,7 +18,7 @@ from django.urls import path, include from django.http import JsonResponse urlpatterns = [ - path('', include('api.urls')), + # path('api/', include('api.urls')), path('', include('ui.urls')), path('admin/', admin.site.urls), ]