testing deployment
All checks were successful
Build and Deploy Beta / build-and-push (push) Successful in 1m11s
Build and Deploy Beta / deploy (push) Successful in 6s

This commit is contained in:
vickytechkey 2026-08-09 09:08:43 +05:30
parent aae387ffed
commit 7959df9afb

View file

@ -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'),
] ]