From 72e0fc963c52dc041e2ecce082f5ee683260dc11 Mon Sep 17 00:00:00 2001 From: kikimor Date: Thu, 26 Jun 2025 15:55:59 +0300 Subject: [PATCH] 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. --- preinfo/__init__.py | 0 preinfo/admin.py | 3 +++ preinfo/apps.py | 6 ++++++ preinfo/migrations/__init__.py | 0 preinfo/tests.py | 3 +++ users/__init__.py | 0 users/admin.py | 3 +++ users/apps.py | 6 ++++++ users/migrations/__init__.py | 0 users/tests.py | 3 +++ 10 files changed, 24 insertions(+) create mode 100644 preinfo/__init__.py create mode 100644 preinfo/admin.py create mode 100644 preinfo/apps.py create mode 100644 preinfo/migrations/__init__.py create mode 100644 preinfo/tests.py create mode 100644 users/__init__.py create mode 100644 users/admin.py create mode 100644 users/apps.py create mode 100644 users/migrations/__init__.py create mode 100644 users/tests.py diff --git a/preinfo/__init__.py b/preinfo/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/preinfo/admin.py b/preinfo/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/preinfo/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/preinfo/apps.py b/preinfo/apps.py new file mode 100644 index 0000000..fab74cb --- /dev/null +++ b/preinfo/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class PreinfoConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "preinfo" diff --git a/preinfo/migrations/__init__.py b/preinfo/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/preinfo/tests.py b/preinfo/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/preinfo/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/users/__init__.py b/users/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/users/admin.py b/users/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/users/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/users/apps.py b/users/apps.py new file mode 100644 index 0000000..88f7b17 --- /dev/null +++ b/users/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class UsersConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "users" diff --git a/users/migrations/__init__.py b/users/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/users/tests.py b/users/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/users/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here.