Skip to content

Commit f4418aa

Browse files
committed
move server/api/healthcheck to server/healthcheck
1 parent 1aaca19 commit f4418aa

10 files changed

Lines changed: 4 additions & 4 deletions

File tree

server/api/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# "django_extensions",
4848
"rest_framework",
4949
"corsheaders",
50-
"api.healthcheck",
50+
"healthcheck",
5151
]
5252

5353
MIDDLEWARE = [

server/api/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
urlpatterns = [
2222
path("admin/", admin.site.urls),
23-
path("api/healthcheck/", include(("api.healthcheck.urls"))),
23+
path("api/healthcheck/", include(("healthcheck.urls"))),
2424
]
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from django.apps import AppConfig
22

33

4-
class ApiConfig(AppConfig):
4+
class HealthcheckConfig(AppConfig):
55
default_auto_field = "django.db.models.BigAutoField"
6-
name = "api"
6+
name = "healthcheck"
File renamed without changes.

0 commit comments

Comments
 (0)