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