testing deployment
This commit is contained in:
parent
aae387ffed
commit
7959df9afb
1 changed files with 6 additions and 0 deletions
|
|
@ -16,7 +16,13 @@ Including another URLconf
|
||||||
"""
|
"""
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
|
from django.http import HttpResponse
|
||||||
|
|
||||||
|
def welcome_view(request):
|
||||||
|
return HttpResponse("welcome vignesh")
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', admin.site.urls),
|
||||||
|
path('', welcome_view, name='welcome'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue