From ab96364a24bbc463a7ca666903c865d9e9f1285b Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Sat, 3 Jan 2026 23:36:38 -0500 Subject: [PATCH] move code into newly created ./src/ dir --- {apps => src/apps}/__init__.py | 0 {apps => src/apps}/dashboard/__init__.py | 0 {apps => src/apps}/dashboard/admin.py | 0 {apps => src/apps}/dashboard/apps.py | 0 {apps => src/apps}/dashboard/migrations/0001_initial.py | 0 {apps => src/apps}/dashboard/migrations/0002_item_text.py | 0 {apps => src/apps}/dashboard/migrations/0003_list_item_list.py | 0 {apps => src/apps}/dashboard/migrations/__init__.py | 0 {apps => src/apps}/dashboard/models.py | 0 {apps => src/apps}/dashboard/tests.py | 0 {apps => src/apps}/dashboard/urls.py | 0 {apps => src/apps}/dashboard/views.py | 0 {core => src/core}/__init__.py | 0 {core => src/core}/asgi.py | 0 {core => src/core}/settings.py | 0 {core => src/core}/urls.py | 0 {core => src/core}/wsgi.py | 0 {functional_tests => src/functional_tests}/__init__.py | 0 {functional_tests => src/functional_tests}/tests.py | 0 manage.py => src/manage.py | 0 {templates => src/templates}/apps/dashboard/home.html | 0 {templates => src/templates}/apps/dashboard/list.html | 0 {templates => src/templates}/core/base.html | 0 23 files changed, 0 insertions(+), 0 deletions(-) rename {apps => src/apps}/__init__.py (100%) rename {apps => src/apps}/dashboard/__init__.py (100%) rename {apps => src/apps}/dashboard/admin.py (100%) rename {apps => src/apps}/dashboard/apps.py (100%) rename {apps => src/apps}/dashboard/migrations/0001_initial.py (100%) rename {apps => src/apps}/dashboard/migrations/0002_item_text.py (100%) rename {apps => src/apps}/dashboard/migrations/0003_list_item_list.py (100%) rename {apps => src/apps}/dashboard/migrations/__init__.py (100%) rename {apps => src/apps}/dashboard/models.py (100%) rename {apps => src/apps}/dashboard/tests.py (100%) rename {apps => src/apps}/dashboard/urls.py (100%) rename {apps => src/apps}/dashboard/views.py (100%) rename {core => src/core}/__init__.py (100%) rename {core => src/core}/asgi.py (100%) rename {core => src/core}/settings.py (100%) rename {core => src/core}/urls.py (100%) rename {core => src/core}/wsgi.py (100%) rename {functional_tests => src/functional_tests}/__init__.py (100%) rename {functional_tests => src/functional_tests}/tests.py (100%) rename manage.py => src/manage.py (100%) rename {templates => src/templates}/apps/dashboard/home.html (100%) rename {templates => src/templates}/apps/dashboard/list.html (100%) rename {templates => src/templates}/core/base.html (100%) diff --git a/apps/__init__.py b/src/apps/__init__.py similarity index 100% rename from apps/__init__.py rename to src/apps/__init__.py diff --git a/apps/dashboard/__init__.py b/src/apps/dashboard/__init__.py similarity index 100% rename from apps/dashboard/__init__.py rename to src/apps/dashboard/__init__.py diff --git a/apps/dashboard/admin.py b/src/apps/dashboard/admin.py similarity index 100% rename from apps/dashboard/admin.py rename to src/apps/dashboard/admin.py diff --git a/apps/dashboard/apps.py b/src/apps/dashboard/apps.py similarity index 100% rename from apps/dashboard/apps.py rename to src/apps/dashboard/apps.py diff --git a/apps/dashboard/migrations/0001_initial.py b/src/apps/dashboard/migrations/0001_initial.py similarity index 100% rename from apps/dashboard/migrations/0001_initial.py rename to src/apps/dashboard/migrations/0001_initial.py diff --git a/apps/dashboard/migrations/0002_item_text.py b/src/apps/dashboard/migrations/0002_item_text.py similarity index 100% rename from apps/dashboard/migrations/0002_item_text.py rename to src/apps/dashboard/migrations/0002_item_text.py diff --git a/apps/dashboard/migrations/0003_list_item_list.py b/src/apps/dashboard/migrations/0003_list_item_list.py similarity index 100% rename from apps/dashboard/migrations/0003_list_item_list.py rename to src/apps/dashboard/migrations/0003_list_item_list.py diff --git a/apps/dashboard/migrations/__init__.py b/src/apps/dashboard/migrations/__init__.py similarity index 100% rename from apps/dashboard/migrations/__init__.py rename to src/apps/dashboard/migrations/__init__.py diff --git a/apps/dashboard/models.py b/src/apps/dashboard/models.py similarity index 100% rename from apps/dashboard/models.py rename to src/apps/dashboard/models.py diff --git a/apps/dashboard/tests.py b/src/apps/dashboard/tests.py similarity index 100% rename from apps/dashboard/tests.py rename to src/apps/dashboard/tests.py diff --git a/apps/dashboard/urls.py b/src/apps/dashboard/urls.py similarity index 100% rename from apps/dashboard/urls.py rename to src/apps/dashboard/urls.py diff --git a/apps/dashboard/views.py b/src/apps/dashboard/views.py similarity index 100% rename from apps/dashboard/views.py rename to src/apps/dashboard/views.py diff --git a/core/__init__.py b/src/core/__init__.py similarity index 100% rename from core/__init__.py rename to src/core/__init__.py diff --git a/core/asgi.py b/src/core/asgi.py similarity index 100% rename from core/asgi.py rename to src/core/asgi.py diff --git a/core/settings.py b/src/core/settings.py similarity index 100% rename from core/settings.py rename to src/core/settings.py diff --git a/core/urls.py b/src/core/urls.py similarity index 100% rename from core/urls.py rename to src/core/urls.py diff --git a/core/wsgi.py b/src/core/wsgi.py similarity index 100% rename from core/wsgi.py rename to src/core/wsgi.py diff --git a/functional_tests/__init__.py b/src/functional_tests/__init__.py similarity index 100% rename from functional_tests/__init__.py rename to src/functional_tests/__init__.py diff --git a/functional_tests/tests.py b/src/functional_tests/tests.py similarity index 100% rename from functional_tests/tests.py rename to src/functional_tests/tests.py diff --git a/manage.py b/src/manage.py similarity index 100% rename from manage.py rename to src/manage.py diff --git a/templates/apps/dashboard/home.html b/src/templates/apps/dashboard/home.html similarity index 100% rename from templates/apps/dashboard/home.html rename to src/templates/apps/dashboard/home.html diff --git a/templates/apps/dashboard/list.html b/src/templates/apps/dashboard/list.html similarity index 100% rename from templates/apps/dashboard/list.html rename to src/templates/apps/dashboard/list.html diff --git a/templates/core/base.html b/src/templates/core/base.html similarity index 100% rename from templates/core/base.html rename to src/templates/core/base.html