add frontend

This commit is contained in:
AdrienLSH
2023-11-21 19:15:16 +01:00
parent 36d97eb58c
commit 45b782e94c
17 changed files with 228 additions and 0 deletions

View File

@ -40,6 +40,7 @@ CORS_ORIGIN_WHITELIST = (
INSTALLED_APPS = [
'accounts.apps.AccountsConfig',
'profiles.apps.ProfilesConfig',
'frontend.apps.FrontendConfig',
'corsheaders',
'rest_framework',

View File

@ -20,5 +20,6 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('accounts/', include('accounts.urls')),
path('test/', include('frontend.urls')),
path('profiles/', include('profiles.urls')),
]