diff --git a/aws-final-project-master/BUILD_SUMMARY.md b/BUILD_SUMMARY.md similarity index 100% rename from aws-final-project-master/BUILD_SUMMARY.md rename to BUILD_SUMMARY.md diff --git a/aws-final-project-master/DEPLOYMENT.md b/DEPLOYMENT.md similarity index 100% rename from aws-final-project-master/DEPLOYMENT.md rename to DEPLOYMENT.md diff --git a/aws-final-project-master/DEVELOPMENT.md b/DEVELOPMENT.md similarity index 100% rename from aws-final-project-master/DEVELOPMENT.md rename to DEVELOPMENT.md diff --git a/aws-final-project-master/DOCUMENTATION_INDEX.md b/DOCUMENTATION_INDEX.md similarity index 100% rename from aws-final-project-master/DOCUMENTATION_INDEX.md rename to DOCUMENTATION_INDEX.md diff --git a/aws-final-project-master/FILE_INVENTORY.md b/FILE_INVENTORY.md similarity index 100% rename from aws-final-project-master/FILE_INVENTORY.md rename to FILE_INVENTORY.md diff --git a/aws-final-project-master/QUICK_REFERENCE.md b/QUICK_REFERENCE.md similarity index 100% rename from aws-final-project-master/QUICK_REFERENCE.md rename to QUICK_REFERENCE.md diff --git a/aws-final-project-master/README.md b/README.md similarity index 100% rename from aws-final-project-master/README.md rename to README.md diff --git a/aws-final-project-master/backend/.env.example b/backend/.env.example similarity index 100% rename from aws-final-project-master/backend/.env.example rename to backend/.env.example diff --git a/aws-final-project-master/backend/.gitignore b/backend/.gitignore similarity index 100% rename from aws-final-project-master/backend/.gitignore rename to backend/.gitignore diff --git a/aws-final-project-master/backend/Dockerfile b/backend/Dockerfile similarity index 100% rename from aws-final-project-master/backend/Dockerfile rename to backend/Dockerfile diff --git a/aws-final-project-master/backend/alembic.ini b/backend/alembic.ini similarity index 100% rename from aws-final-project-master/backend/alembic.ini rename to backend/alembic.ini diff --git a/aws-final-project-master/backend/alembic/env.py b/backend/alembic/env.py similarity index 100% rename from aws-final-project-master/backend/alembic/env.py rename to backend/alembic/env.py diff --git a/aws-final-project-master/backend/app/__init__.py b/backend/app/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/__init__.py rename to backend/app/__init__.py diff --git a/aws-final-project-master/backend/app/auth/__init__.py b/backend/app/auth/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/auth/__init__.py rename to backend/app/auth/__init__.py diff --git a/aws-final-project-master/backend/app/auth/utils.py b/backend/app/auth/utils.py similarity index 100% rename from aws-final-project-master/backend/app/auth/utils.py rename to backend/app/auth/utils.py diff --git a/aws-final-project-master/backend/app/config.py b/backend/app/config.py similarity index 100% rename from aws-final-project-master/backend/app/config.py rename to backend/app/config.py diff --git a/aws-final-project-master/backend/app/db.py b/backend/app/db.py similarity index 100% rename from aws-final-project-master/backend/app/db.py rename to backend/app/db.py diff --git a/aws-final-project-master/backend/app/models/__init__.py b/backend/app/models/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/models/__init__.py rename to backend/app/models/__init__.py diff --git a/aws-final-project-master/backend/app/models/conversation.py b/backend/app/models/conversation.py similarity index 100% rename from aws-final-project-master/backend/app/models/conversation.py rename to backend/app/models/conversation.py diff --git a/aws-final-project-master/backend/app/models/like.py b/backend/app/models/like.py similarity index 100% rename from aws-final-project-master/backend/app/models/like.py rename to backend/app/models/like.py diff --git a/aws-final-project-master/backend/app/models/message.py b/backend/app/models/message.py similarity index 100% rename from aws-final-project-master/backend/app/models/message.py rename to backend/app/models/message.py diff --git a/aws-final-project-master/backend/app/models/photo.py b/backend/app/models/photo.py similarity index 100% rename from aws-final-project-master/backend/app/models/photo.py rename to backend/app/models/photo.py diff --git a/aws-final-project-master/backend/app/models/profile.py b/backend/app/models/profile.py similarity index 100% rename from aws-final-project-master/backend/app/models/profile.py rename to backend/app/models/profile.py diff --git a/aws-final-project-master/backend/app/models/user.py b/backend/app/models/user.py similarity index 100% rename from aws-final-project-master/backend/app/models/user.py rename to backend/app/models/user.py diff --git a/aws-final-project-master/backend/app/routers/__init__.py b/backend/app/routers/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/routers/__init__.py rename to backend/app/routers/__init__.py diff --git a/aws-final-project-master/backend/app/routers/auth.py b/backend/app/routers/auth.py similarity index 100% rename from aws-final-project-master/backend/app/routers/auth.py rename to backend/app/routers/auth.py diff --git a/aws-final-project-master/backend/app/routers/chat.py b/backend/app/routers/chat.py similarity index 100% rename from aws-final-project-master/backend/app/routers/chat.py rename to backend/app/routers/chat.py diff --git a/aws-final-project-master/backend/app/routers/likes.py b/backend/app/routers/likes.py similarity index 100% rename from aws-final-project-master/backend/app/routers/likes.py rename to backend/app/routers/likes.py diff --git a/aws-final-project-master/backend/app/routers/photos.py b/backend/app/routers/photos.py similarity index 100% rename from aws-final-project-master/backend/app/routers/photos.py rename to backend/app/routers/photos.py diff --git a/aws-final-project-master/backend/app/routers/profiles.py b/backend/app/routers/profiles.py similarity index 100% rename from aws-final-project-master/backend/app/routers/profiles.py rename to backend/app/routers/profiles.py diff --git a/aws-final-project-master/backend/app/schemas/__init__.py b/backend/app/schemas/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/__init__.py rename to backend/app/schemas/__init__.py diff --git a/aws-final-project-master/backend/app/schemas/auth.py b/backend/app/schemas/auth.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/auth.py rename to backend/app/schemas/auth.py diff --git a/aws-final-project-master/backend/app/schemas/conversation.py b/backend/app/schemas/conversation.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/conversation.py rename to backend/app/schemas/conversation.py diff --git a/aws-final-project-master/backend/app/schemas/like.py b/backend/app/schemas/like.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/like.py rename to backend/app/schemas/like.py diff --git a/aws-final-project-master/backend/app/schemas/message.py b/backend/app/schemas/message.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/message.py rename to backend/app/schemas/message.py diff --git a/aws-final-project-master/backend/app/schemas/photo.py b/backend/app/schemas/photo.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/photo.py rename to backend/app/schemas/photo.py diff --git a/aws-final-project-master/backend/app/schemas/profile.py b/backend/app/schemas/profile.py similarity index 100% rename from aws-final-project-master/backend/app/schemas/profile.py rename to backend/app/schemas/profile.py diff --git a/aws-final-project-master/backend/app/services/__init__.py b/backend/app/services/__init__.py similarity index 100% rename from aws-final-project-master/backend/app/services/__init__.py rename to backend/app/services/__init__.py diff --git a/aws-final-project-master/backend/app/services/auth_service.py b/backend/app/services/auth_service.py similarity index 100% rename from aws-final-project-master/backend/app/services/auth_service.py rename to backend/app/services/auth_service.py diff --git a/aws-final-project-master/backend/app/services/chat_service.py b/backend/app/services/chat_service.py similarity index 100% rename from aws-final-project-master/backend/app/services/chat_service.py rename to backend/app/services/chat_service.py diff --git a/aws-final-project-master/backend/app/services/like_service.py b/backend/app/services/like_service.py similarity index 100% rename from aws-final-project-master/backend/app/services/like_service.py rename to backend/app/services/like_service.py diff --git a/aws-final-project-master/backend/app/services/photo_service.py b/backend/app/services/photo_service.py similarity index 100% rename from aws-final-project-master/backend/app/services/photo_service.py rename to backend/app/services/photo_service.py diff --git a/aws-final-project-master/backend/app/services/profile_service.py b/backend/app/services/profile_service.py similarity index 100% rename from aws-final-project-master/backend/app/services/profile_service.py rename to backend/app/services/profile_service.py diff --git a/aws-final-project-master/backend/main.py b/backend/main.py similarity index 100% rename from aws-final-project-master/backend/main.py rename to backend/main.py diff --git a/aws-final-project-master/backend/requirements.txt b/backend/requirements.txt similarity index 100% rename from aws-final-project-master/backend/requirements.txt rename to backend/requirements.txt diff --git a/aws-final-project-master/docker-compose.yml b/docker-compose.yml similarity index 100% rename from aws-final-project-master/docker-compose.yml rename to docker-compose.yml diff --git a/aws-final-project-master/frontend/.env.example b/frontend/.env.example similarity index 100% rename from aws-final-project-master/frontend/.env.example rename to frontend/.env.example diff --git a/aws-final-project-master/frontend/.gitignore b/frontend/.gitignore similarity index 100% rename from aws-final-project-master/frontend/.gitignore rename to frontend/.gitignore diff --git a/aws-final-project-master/frontend/Dockerfile b/frontend/Dockerfile similarity index 100% rename from aws-final-project-master/frontend/Dockerfile rename to frontend/Dockerfile diff --git a/aws-final-project-master/frontend/index.html b/frontend/index.html similarity index 100% rename from aws-final-project-master/frontend/index.html rename to frontend/index.html diff --git a/aws-final-project-master/frontend/nginx.conf b/frontend/nginx.conf similarity index 100% rename from aws-final-project-master/frontend/nginx.conf rename to frontend/nginx.conf diff --git a/aws-final-project-master/frontend/package-lock.json b/frontend/package-lock.json similarity index 100% rename from aws-final-project-master/frontend/package-lock.json rename to frontend/package-lock.json diff --git a/aws-final-project-master/frontend/package.json b/frontend/package.json similarity index 100% rename from aws-final-project-master/frontend/package.json rename to frontend/package.json diff --git a/aws-final-project-master/frontend/src/App.css b/frontend/src/App.css similarity index 100% rename from aws-final-project-master/frontend/src/App.css rename to frontend/src/App.css diff --git a/aws-final-project-master/frontend/src/App.jsx b/frontend/src/App.jsx similarity index 100% rename from aws-final-project-master/frontend/src/App.jsx rename to frontend/src/App.jsx diff --git a/aws-final-project-master/frontend/src/api.js b/frontend/src/api.js similarity index 100% rename from aws-final-project-master/frontend/src/api.js rename to frontend/src/api.js diff --git a/aws-final-project-master/frontend/src/index.css b/frontend/src/index.css similarity index 100% rename from aws-final-project-master/frontend/src/index.css rename to frontend/src/index.css diff --git a/aws-final-project-master/frontend/src/main.jsx b/frontend/src/main.jsx similarity index 100% rename from aws-final-project-master/frontend/src/main.jsx rename to frontend/src/main.jsx diff --git a/aws-final-project-master/frontend/src/pages/Chat.jsx b/frontend/src/pages/Chat.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/Chat.jsx rename to frontend/src/pages/Chat.jsx diff --git a/aws-final-project-master/frontend/src/pages/Discover.jsx b/frontend/src/pages/Discover.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/Discover.jsx rename to frontend/src/pages/Discover.jsx diff --git a/aws-final-project-master/frontend/src/pages/Login.jsx b/frontend/src/pages/Login.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/Login.jsx rename to frontend/src/pages/Login.jsx diff --git a/aws-final-project-master/frontend/src/pages/Matches.jsx b/frontend/src/pages/Matches.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/Matches.jsx rename to frontend/src/pages/Matches.jsx diff --git a/aws-final-project-master/frontend/src/pages/ProfileEditor.jsx b/frontend/src/pages/ProfileEditor.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/ProfileEditor.jsx rename to frontend/src/pages/ProfileEditor.jsx diff --git a/aws-final-project-master/frontend/src/pages/Register.jsx b/frontend/src/pages/Register.jsx similarity index 100% rename from aws-final-project-master/frontend/src/pages/Register.jsx rename to frontend/src/pages/Register.jsx diff --git a/aws-final-project-master/frontend/src/styles/auth.css b/frontend/src/styles/auth.css similarity index 100% rename from aws-final-project-master/frontend/src/styles/auth.css rename to frontend/src/styles/auth.css diff --git a/aws-final-project-master/frontend/src/styles/chat.css b/frontend/src/styles/chat.css similarity index 100% rename from aws-final-project-master/frontend/src/styles/chat.css rename to frontend/src/styles/chat.css diff --git a/aws-final-project-master/frontend/src/styles/discover.css b/frontend/src/styles/discover.css similarity index 100% rename from aws-final-project-master/frontend/src/styles/discover.css rename to frontend/src/styles/discover.css diff --git a/aws-final-project-master/frontend/src/styles/matches.css b/frontend/src/styles/matches.css similarity index 100% rename from aws-final-project-master/frontend/src/styles/matches.css rename to frontend/src/styles/matches.css diff --git a/aws-final-project-master/frontend/src/styles/profileEditor.css b/frontend/src/styles/profileEditor.css similarity index 100% rename from aws-final-project-master/frontend/src/styles/profileEditor.css rename to frontend/src/styles/profileEditor.css diff --git a/aws-final-project-master/frontend/vite.config.js b/frontend/vite.config.js similarity index 100% rename from aws-final-project-master/frontend/vite.config.js rename to frontend/vite.config.js diff --git a/aws-final-project-master/helm/dating-app/Chart.yaml b/helm/dating-app/Chart.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/Chart.yaml rename to helm/dating-app/Chart.yaml diff --git a/aws-final-project-master/helm/dating-app/README.md b/helm/dating-app/README.md similarity index 100% rename from aws-final-project-master/helm/dating-app/README.md rename to helm/dating-app/README.md diff --git a/aws-final-project-master/helm/dating-app/templates/backend.yaml b/helm/dating-app/templates/backend.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/backend.yaml rename to helm/dating-app/templates/backend.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/configmap.yaml b/helm/dating-app/templates/configmap.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/configmap.yaml rename to helm/dating-app/templates/configmap.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/frontend.yaml b/helm/dating-app/templates/frontend.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/frontend.yaml rename to helm/dating-app/templates/frontend.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/ingress.yaml b/helm/dating-app/templates/ingress.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/ingress.yaml rename to helm/dating-app/templates/ingress.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/namespace.yaml b/helm/dating-app/templates/namespace.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/namespace.yaml rename to helm/dating-app/templates/namespace.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/postgres-init.yaml b/helm/dating-app/templates/postgres-init.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/postgres-init.yaml rename to helm/dating-app/templates/postgres-init.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/postgres.yaml b/helm/dating-app/templates/postgres.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/postgres.yaml rename to helm/dating-app/templates/postgres.yaml diff --git a/aws-final-project-master/helm/dating-app/templates/secret.yaml b/helm/dating-app/templates/secret.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/templates/secret.yaml rename to helm/dating-app/templates/secret.yaml diff --git a/aws-final-project-master/helm/dating-app/values-aws.yaml b/helm/dating-app/values-aws.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/values-aws.yaml rename to helm/dating-app/values-aws.yaml diff --git a/aws-final-project-master/helm/dating-app/values-lab.yaml b/helm/dating-app/values-lab.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/values-lab.yaml rename to helm/dating-app/values-lab.yaml diff --git a/aws-final-project-master/helm/dating-app/values.yaml b/helm/dating-app/values.yaml similarity index 100% rename from aws-final-project-master/helm/dating-app/values.yaml rename to helm/dating-app/values.yaml diff --git a/aws-final-project-master/schema.sql b/schema.sql similarity index 100% rename from aws-final-project-master/schema.sql rename to schema.sql