Add IntelliJ IDEA project configuration files

This commit adds IntelliJ IDEA-specific configuration files for the project, including module setup, version control integration, inspection profiles, and workspace settings. These files facilitate development environment configuration for contributors using IntelliJ IDEA.
This commit is contained in:
2025-06-25 15:38:17 +03:00
parent ec8a920b9f
commit 21800ea5e3
31 changed files with 692 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
ASGI config for DepoT project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "DepoT.settings")
application = get_asgi_application()