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