Skip to content

Commit

Permalink
added verce conf
Browse files Browse the repository at this point in the history
  • Loading branch information
4darsh-Dev committed Jun 1, 2024
1 parent 65c0cbc commit acc5567
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recpieChatbot/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@
"""
from django.contrib import admin
from django.urls import path, include
from . import settings

urlpatterns = [
path('admin/', admin.site.urls),
path("", include('home.urls')),
path("recipe/", include('home.urls')),

]

# vercel deployment conf
urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

0 comments on commit acc5567

Please sign in to comment.