phase1: bootstrap containerized django stack and project scaffold
This commit is contained in:
7
config/urls.py
Normal file
7
config/urls.py
Normal file
@ -0,0 +1,7 @@
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path("admin/", admin.site.urls),
|
||||
path("", include("apps.core.urls")),
|
||||
]
|
||||
Reference in New Issue
Block a user