Django scaffold aligned with the business delivery lane: tenant-keyed Member model without passwords, identity app as sole OIDC/session boundary, dev-claims login, authenticated /app/ shell, ADR-0001, and tests. T01/T02/T05/T06 done; OIDC registration, real user-engine HTTP, flex-auth, and packaging remain open.
10 lines
184 B
Python
10 lines
184 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("", views.landing, name="landing"),
|
|
path("app/", views.app_home, name="app_home"),
|
|
]
|