init: django project with CI pipeline
Some checks failed
Build and Push Docker Image / build (push) Failing after 2m47s
Some checks failed
Build and Push Docker Image / build (push) Failing after 2m47s
This commit is contained in:
13
app/urls.py
Normal file
13
app/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.http import JsonResponse
|
||||
|
||||
def health(request):
|
||||
return JsonResponse({'status': 'ok'})
|
||||
|
||||
urlpatterns = []
|
||||
|
||||
# 使用简单的路由,避免引入 django.contrib.admin
|
||||
from django.urls import path
|
||||
urlpatterns = [
|
||||
path('', health),
|
||||
path('health/', health),
|
||||
]
|
||||
Reference in New Issue
Block a user