From c84866210aba603c605d56d35c4f6ce794d7570a Mon Sep 17 00:00:00 2001 From: Irene Sheen Date: Thu, 18 Dec 2025 02:17:55 +0530 Subject: [PATCH] Move the server code inside server dir --- .gitignore | 2 +- {appunti => server/appunti}/__init__.py | 0 {appunti => server/appunti}/asgi.py | 0 {appunti => server/appunti}/base_settings.py | 0 {appunti => server/appunti}/urls.py | 0 {appunti => server/appunti}/wsgi.py | 0 manage.py => server/manage.py | 0 {notes => server/notes}/__init__.py | 0 {notes => server/notes}/admin.py | 0 {notes => server/notes}/api_views.py | 0 {notes => server/notes}/apps.py | 0 {notes => server/notes}/forms.py | 0 {notes => server/notes}/migrations/0001_initial.py | 0 {notes => server/notes}/migrations/__init__.py | 0 {notes => server/notes}/models.py | 0 {notes => server/notes}/serializers.py | 0 .../notes}/static/notes/images/icons/logout.png | Bin .../notes}/static/notes/images/icons/paw.png | Bin .../static/notes/images/icons/post-a-note.png | Bin .../notes}/static/notes/images/icons/profile.png | Bin .../notes}/static/notes/stylesheets/style.css | 0 {notes => server/notes}/templates/notes/base.html | 0 {notes => server/notes}/templates/notes/home.html | 0 .../notes}/templates/notes/messages.html | 0 .../notes}/templates/notes/note_form.html | 0 .../notes}/templates/notes/user_form.html | 0 .../notes}/templates/registration/login.html | 0 {notes => server/notes}/tests.py | 0 {notes => server/notes}/urls.py | 0 {notes => server/notes}/views.py | 0 pyproject.toml => server/pyproject.toml | 0 uv.lock => server/uv.lock | 0 32 files changed, 1 insertion(+), 1 deletion(-) rename {appunti => server/appunti}/__init__.py (100%) rename {appunti => server/appunti}/asgi.py (100%) rename {appunti => server/appunti}/base_settings.py (100%) rename {appunti => server/appunti}/urls.py (100%) rename {appunti => server/appunti}/wsgi.py (100%) rename manage.py => server/manage.py (100%) rename {notes => server/notes}/__init__.py (100%) rename {notes => server/notes}/admin.py (100%) rename {notes => server/notes}/api_views.py (100%) rename {notes => server/notes}/apps.py (100%) rename {notes => server/notes}/forms.py (100%) rename {notes => server/notes}/migrations/0001_initial.py (100%) rename {notes => server/notes}/migrations/__init__.py (100%) rename {notes => server/notes}/models.py (100%) rename {notes => server/notes}/serializers.py (100%) rename {notes => server/notes}/static/notes/images/icons/logout.png (100%) rename {notes => server/notes}/static/notes/images/icons/paw.png (100%) rename {notes => server/notes}/static/notes/images/icons/post-a-note.png (100%) rename {notes => server/notes}/static/notes/images/icons/profile.png (100%) rename {notes => server/notes}/static/notes/stylesheets/style.css (100%) rename {notes => server/notes}/templates/notes/base.html (100%) rename {notes => server/notes}/templates/notes/home.html (100%) rename {notes => server/notes}/templates/notes/messages.html (100%) rename {notes => server/notes}/templates/notes/note_form.html (100%) rename {notes => server/notes}/templates/notes/user_form.html (100%) rename {notes => server/notes}/templates/registration/login.html (100%) rename {notes => server/notes}/tests.py (100%) rename {notes => server/notes}/urls.py (100%) rename {notes => server/notes}/views.py (100%) rename pyproject.toml => server/pyproject.toml (100%) rename uv.lock => server/uv.lock (100%) diff --git a/.gitignore b/.gitignore index ae6e3fc..bb580d0 100644 --- a/.gitignore +++ b/.gitignore @@ -174,4 +174,4 @@ cython_debug/ # PyPI configuration file .pypirc -appunti/settings.py +server/appunti/settings.py diff --git a/appunti/__init__.py b/server/appunti/__init__.py similarity index 100% rename from appunti/__init__.py rename to server/appunti/__init__.py diff --git a/appunti/asgi.py b/server/appunti/asgi.py similarity index 100% rename from appunti/asgi.py rename to server/appunti/asgi.py diff --git a/appunti/base_settings.py b/server/appunti/base_settings.py similarity index 100% rename from appunti/base_settings.py rename to server/appunti/base_settings.py diff --git a/appunti/urls.py b/server/appunti/urls.py similarity index 100% rename from appunti/urls.py rename to server/appunti/urls.py diff --git a/appunti/wsgi.py b/server/appunti/wsgi.py similarity index 100% rename from appunti/wsgi.py rename to server/appunti/wsgi.py diff --git a/manage.py b/server/manage.py similarity index 100% rename from manage.py rename to server/manage.py diff --git a/notes/__init__.py b/server/notes/__init__.py similarity index 100% rename from notes/__init__.py rename to server/notes/__init__.py diff --git a/notes/admin.py b/server/notes/admin.py similarity index 100% rename from notes/admin.py rename to server/notes/admin.py diff --git a/notes/api_views.py b/server/notes/api_views.py similarity index 100% rename from notes/api_views.py rename to server/notes/api_views.py diff --git a/notes/apps.py b/server/notes/apps.py similarity index 100% rename from notes/apps.py rename to server/notes/apps.py diff --git a/notes/forms.py b/server/notes/forms.py similarity index 100% rename from notes/forms.py rename to server/notes/forms.py diff --git a/notes/migrations/0001_initial.py b/server/notes/migrations/0001_initial.py similarity index 100% rename from notes/migrations/0001_initial.py rename to server/notes/migrations/0001_initial.py diff --git a/notes/migrations/__init__.py b/server/notes/migrations/__init__.py similarity index 100% rename from notes/migrations/__init__.py rename to server/notes/migrations/__init__.py diff --git a/notes/models.py b/server/notes/models.py similarity index 100% rename from notes/models.py rename to server/notes/models.py diff --git a/notes/serializers.py b/server/notes/serializers.py similarity index 100% rename from notes/serializers.py rename to server/notes/serializers.py diff --git a/notes/static/notes/images/icons/logout.png b/server/notes/static/notes/images/icons/logout.png similarity index 100% rename from notes/static/notes/images/icons/logout.png rename to server/notes/static/notes/images/icons/logout.png diff --git a/notes/static/notes/images/icons/paw.png b/server/notes/static/notes/images/icons/paw.png similarity index 100% rename from notes/static/notes/images/icons/paw.png rename to server/notes/static/notes/images/icons/paw.png diff --git a/notes/static/notes/images/icons/post-a-note.png b/server/notes/static/notes/images/icons/post-a-note.png similarity index 100% rename from notes/static/notes/images/icons/post-a-note.png rename to server/notes/static/notes/images/icons/post-a-note.png diff --git a/notes/static/notes/images/icons/profile.png b/server/notes/static/notes/images/icons/profile.png similarity index 100% rename from notes/static/notes/images/icons/profile.png rename to server/notes/static/notes/images/icons/profile.png diff --git a/notes/static/notes/stylesheets/style.css b/server/notes/static/notes/stylesheets/style.css similarity index 100% rename from notes/static/notes/stylesheets/style.css rename to server/notes/static/notes/stylesheets/style.css diff --git a/notes/templates/notes/base.html b/server/notes/templates/notes/base.html similarity index 100% rename from notes/templates/notes/base.html rename to server/notes/templates/notes/base.html diff --git a/notes/templates/notes/home.html b/server/notes/templates/notes/home.html similarity index 100% rename from notes/templates/notes/home.html rename to server/notes/templates/notes/home.html diff --git a/notes/templates/notes/messages.html b/server/notes/templates/notes/messages.html similarity index 100% rename from notes/templates/notes/messages.html rename to server/notes/templates/notes/messages.html diff --git a/notes/templates/notes/note_form.html b/server/notes/templates/notes/note_form.html similarity index 100% rename from notes/templates/notes/note_form.html rename to server/notes/templates/notes/note_form.html diff --git a/notes/templates/notes/user_form.html b/server/notes/templates/notes/user_form.html similarity index 100% rename from notes/templates/notes/user_form.html rename to server/notes/templates/notes/user_form.html diff --git a/notes/templates/registration/login.html b/server/notes/templates/registration/login.html similarity index 100% rename from notes/templates/registration/login.html rename to server/notes/templates/registration/login.html diff --git a/notes/tests.py b/server/notes/tests.py similarity index 100% rename from notes/tests.py rename to server/notes/tests.py diff --git a/notes/urls.py b/server/notes/urls.py similarity index 100% rename from notes/urls.py rename to server/notes/urls.py diff --git a/notes/views.py b/server/notes/views.py similarity index 100% rename from notes/views.py rename to server/notes/views.py diff --git a/pyproject.toml b/server/pyproject.toml similarity index 100% rename from pyproject.toml rename to server/pyproject.toml diff --git a/uv.lock b/server/uv.lock similarity index 100% rename from uv.lock rename to server/uv.lock