phase1: bootstrap containerized django stack and project scaffold
This commit is contained in:
10
apps/core/views.py
Normal file
10
apps/core/views.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.http import JsonResponse
|
||||
from django.shortcuts import render
|
||||
|
||||
|
||||
def home(request):
|
||||
return render(request, "home.html")
|
||||
|
||||
|
||||
def health(request):
|
||||
return JsonResponse({"status": "ok"})
|
||||
Reference in New Issue
Block a user