initial rasaddam backend project

This commit is contained in:
2025-04-29 15:43:53 +03:30
parent 4e757b1776
commit 2e17d0cd44
67 changed files with 1634 additions and 0 deletions

0
apps/core/__init__.py Normal file
View File

6
apps/core/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class CoreConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "apps.core"

1
apps/core/constants.py Normal file
View File

@@ -0,0 +1 @@
# Add your app constants here.

6
apps/core/exceptions.py Normal file
View File

@@ -0,0 +1,6 @@
"""
You should probably add a custom exception handler to your project based on
who consumes your APIs. To learn how to create a custom exception handler,
you can check out the Django Rest Framework documentation at:
https://www.django-rest-framework.org/api-guide/exceptions/#custom-exception-handling
"""

0
apps/core/helpers.py Normal file
View File

0
apps/core/models.py Normal file
View File

3
apps/core/urls.py Normal file
View File

@@ -0,0 +1,3 @@
app_name = "core"
urlpatterns = []