initial rasaddam backend project
This commit is contained in:
0
apps/core/__init__.py
Normal file
0
apps/core/__init__.py
Normal file
6
apps/core/apps.py
Normal file
6
apps/core/apps.py
Normal 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
1
apps/core/constants.py
Normal file
@@ -0,0 +1 @@
|
||||
# Add your app constants here.
|
||||
6
apps/core/exceptions.py
Normal file
6
apps/core/exceptions.py
Normal 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
0
apps/core/helpers.py
Normal file
0
apps/core/models.py
Normal file
0
apps/core/models.py
Normal file
3
apps/core/urls.py
Normal file
3
apps/core/urls.py
Normal file
@@ -0,0 +1,3 @@
|
||||
app_name = "core"
|
||||
|
||||
urlpatterns = []
|
||||
0
apps/example/__init__.py
Normal file
0
apps/example/__init__.py
Normal file
0
apps/example/api/__init__.py
Normal file
0
apps/example/api/__init__.py
Normal file
0
apps/example/api/v1/__init__.py
Normal file
0
apps/example/api/v1/__init__.py
Normal file
0
apps/example/api/v1/serializers.py
Normal file
0
apps/example/api/v1/serializers.py
Normal file
0
apps/example/api/v1/urls.py
Normal file
0
apps/example/api/v1/urls.py
Normal file
0
apps/example/api/v1/views.py
Normal file
0
apps/example/api/v1/views.py
Normal file
0
apps/example/api/v2/__init__.py
Normal file
0
apps/example/api/v2/__init__.py
Normal file
0
apps/example/api/v2/serializers.py
Normal file
0
apps/example/api/v2/serializers.py
Normal file
0
apps/example/api/v2/urls.py
Normal file
0
apps/example/api/v2/urls.py
Normal file
0
apps/example/api/v2/views.py
Normal file
0
apps/example/api/v2/views.py
Normal file
0
apps/example/apps.py
Normal file
0
apps/example/apps.py
Normal file
0
apps/example/fixtures/.gitkeep
Normal file
0
apps/example/fixtures/.gitkeep
Normal file
0
apps/example/management/__init__.py
Normal file
0
apps/example/management/__init__.py
Normal file
0
apps/example/management/commands/__init__.py
Normal file
0
apps/example/management/commands/__init__.py
Normal file
1
apps/example/management/commands/command.py
Normal file
1
apps/example/management/commands/command.py
Normal file
@@ -0,0 +1 @@
|
||||
# Your custom management commands go here.
|
||||
0
apps/example/migrations/__init__.py
Normal file
0
apps/example/migrations/__init__.py
Normal file
0
apps/example/models.py
Normal file
0
apps/example/models.py
Normal file
1
apps/example/services.py
Normal file
1
apps/example/services.py
Normal file
@@ -0,0 +1 @@
|
||||
# Your services go here
|
||||
0
apps/example/tests/test_common_services.py
Normal file
0
apps/example/tests/test_common_services.py
Normal file
1
apps/example/urls.py
Normal file
1
apps/example/urls.py
Normal file
@@ -0,0 +1 @@
|
||||
# Your urls go here
|
||||
Reference in New Issue
Block a user