Commit adf5be25 authored by Deokhyun Lee's avatar Deokhyun Lee

now, urls are mapped so clients can access with the proper destinations.

parent 132c1c41
Pipeline #2624 failed with stages
......@@ -16,6 +16,11 @@ Including another URLconf
from django.contrib import admin
from django.urls import include, path
# from the top: url patterns for,
# localhost:<port>/hompage
# localhost:<port>/about
# localhost:<port>/contact
urlpatterns = [
path('admin/', admin.site.urls),
path('homepage/', include('homepage.urls')),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment