initial commit

This commit is contained in:
behruz-dev
2025-08-28 13:05:11 +05:00
commit 8ac8fd8787
58 changed files with 783 additions and 0 deletions

32
config/urls.py Normal file
View File

@@ -0,0 +1,32 @@
from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
from rest_framework.permissions import IsAdminUser
from drf_yasg.views import get_schema_view
from drf_yasg import openapi
schema_view = get_schema_view(
openapi.Info(
title="Horeca 360 API",
default_version='v1',
description="Test description",
terms_of_service="https://www.google.com/policies/terms/",
contact=openapi.Contact(email="xoliqberdiyevbehru12@gmail.com"),
license=openapi.License(name="Felix IT Solutions License"),
),
public=True,
permission_classes=[IsAdminUser]
)
urlpatterns = [
path('admin/', admin.site.urls),
path('', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
]
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)