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