add the frontend app

This commit is contained in:
Matteo Rosati
2026-02-10 20:32:37 +01:00
parent 266a1249d7
commit 2805c92dc8
11 changed files with 40 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ ALLOWED_HOSTS = []
INSTALLED_APPS = [
"api",
"frontend",
"rest_framework",
"rest_framework_simplejwt",
"rest_framework_simplejwt.token_blacklist",

View File

@@ -19,6 +19,7 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path("", include("frontend.urls")),
path("admin/", admin.site.urls),
path("api/", include("api.urls")),
]