diff --git a/API/API.Core/WebAPI.http b/API/API.Core/WebAPI.http deleted file mode 100644 index 5f2b96f..0000000 --- a/API/API.Core/WebAPI.http +++ /dev/null @@ -1,64 +0,0 @@ -@WebAPI_HostAddress = http://localhost:5069 - -GET {{WebAPI_HostAddress}}/weatherforecast/ -Accept: application/json - -### - -GET {{WebAPI_HostAddress}}/api/users -Accept: application/json - -### - -GET {{WebAPI_HostAddress}}/api/users/{{userId}} -Accept: application/json - -### - -GET {{WebAPI_HostAddress}}/api/users/by-username/{{username}} -Accept: application/json - -### - -GET {{WebAPI_HostAddress}}/api/users/by-email/{{email}} -Accept: application/json - -### - -POST {{WebAPI_HostAddress}}/api/users -Content-Type: application/json -Accept: application/json - -{ - "userAccountID": "00000000-0000-0000-0000-000000000000", - "username": "testuser", - "firstName": "Test", - "lastName": "User", - "email": "testuser@example.com", - "createdAt": "2025-01-01T00:00:00Z", - "updatedAt": null, - "dateOfBirth": "1990-01-01T00:00:00Z", - "timer": null -} - -### - -PUT {{WebAPI_HostAddress}}/api/users/{{userId}} -Content-Type: application/json -Accept: application/json - -{ - "userAccountID": "{{userId}}", - "username": "testuser", - "firstName": "Updated", - "lastName": "User", - "email": "testuser@example.com", - "createdAt": "2025-01-01T00:00:00Z", - "updatedAt": "2025-02-01T00:00:00Z", - "dateOfBirth": "1990-01-01T00:00:00Z", - "timer": null -} - -### - -DELETE {{WebAPI_HostAddress}}/api/users/{{userId}} diff --git a/README.md b/README.md index e8d2540..7b9de81 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Overview -The Biergarten App is evolving from a standalone full‑stack Next.js application into a multi‑project monorepo with a dedicated .NET backend and a SQL‑first approach. Backend data access is being refactored to use stored procedures, with future microservices planned for image upload, mapping, and possibly authentication. The Next.js site remains the frontend and will consume the .NET API. +The Biergarten App is evolving from a standalone full‑stack Next.js application into a multi‑project monorepo with a dedicated .NET backend and a SQL‑first approach. Backend data access is being refactored to use stored procedures. The Next.js site remains the frontend and will consume the .NET API. Status note (Jan 26, 2026): Migration is in progress; some parts are still being moved from the website into the .NET layers. diff --git a/API/API.Core/API.Core.csproj b/src/Core/API/API.Core/API.Core.csproj similarity index 100% rename from API/API.Core/API.Core.csproj rename to src/Core/API/API.Core/API.Core.csproj diff --git a/API/API.Core/Controllers/AuthController.cs b/src/Core/API/API.Core/Controllers/AuthController.cs similarity index 100% rename from API/API.Core/Controllers/AuthController.cs rename to src/Core/API/API.Core/Controllers/AuthController.cs diff --git a/API/API.Core/Controllers/NotFoundController.cs b/src/Core/API/API.Core/Controllers/NotFoundController.cs similarity index 100% rename from API/API.Core/Controllers/NotFoundController.cs rename to src/Core/API/API.Core/Controllers/NotFoundController.cs diff --git a/API/API.Core/Controllers/UserController.cs b/src/Core/API/API.Core/Controllers/UserController.cs similarity index 100% rename from API/API.Core/Controllers/UserController.cs rename to src/Core/API/API.Core/Controllers/UserController.cs diff --git a/API/API.Core/Program.cs b/src/Core/API/API.Core/Program.cs similarity index 100% rename from API/API.Core/Program.cs rename to src/Core/API/API.Core/Program.cs diff --git a/API/API.Core/Properties/launchSettings.json b/src/Core/API/API.Core/Properties/launchSettings.json similarity index 100% rename from API/API.Core/Properties/launchSettings.json rename to src/Core/API/API.Core/Properties/launchSettings.json diff --git a/API/API.Core/appsettings.Development.json b/src/Core/API/API.Core/appsettings.Development.json similarity index 100% rename from API/API.Core/appsettings.Development.json rename to src/Core/API/API.Core/appsettings.Development.json diff --git a/API/API.Core/appsettings.json b/src/Core/API/API.Core/appsettings.json similarity index 100% rename from API/API.Core/appsettings.json rename to src/Core/API/API.Core/appsettings.json diff --git a/biergarten.slnx b/src/Core/Core.slnx similarity index 100% rename from biergarten.slnx rename to src/Core/Core.slnx diff --git a/Database/Database.Core/Database.Core.csproj b/src/Core/Database/Database.Core/Database.Core.csproj similarity index 100% rename from Database/Database.Core/Database.Core.csproj rename to src/Core/Database/Database.Core/Database.Core.csproj diff --git a/Database/Database.Core/Program.cs b/src/Core/Database/Database.Core/Program.cs similarity index 100% rename from Database/Database.Core/Program.cs rename to src/Core/Database/Database.Core/Program.cs diff --git a/Database/Database.Core/scripts/01-schema/schema.sql b/src/Core/Database/Database.Core/scripts/01-schema/schema.sql similarity index 100% rename from Database/Database.Core/scripts/01-schema/schema.sql rename to src/Core/Database/Database.Core/scripts/01-schema/schema.sql diff --git a/Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql b/src/Core/Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql similarity index 100% rename from Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql rename to src/Core/Database/Database.Core/scripts/02-functions/UDF_GetCountryIdByCode.sql diff --git a/Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql b/src/Core/Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql similarity index 100% rename from Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql rename to src/Core/Database/Database.Core/scripts/02-functions/UDF_GetStateProvinceIdByCode.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_CreateUserAccount.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_DeleteUserAccount.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByEmail.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountById.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_GetUserAccountByUsername.sql diff --git a/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql b/src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql rename to src/Core/Database/Database.Core/scripts/03-crud/01-UserAccount/USP_UpdateUserAccount.sql diff --git a/Database/Database.Core/scripts/03-crud/02-Auth/USP_GetUserCredentialByUserAccountId.sql b/src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_GetUserCredentialByUserAccountId.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/02-Auth/USP_GetUserCredentialByUserAccountId.sql rename to src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_GetUserCredentialByUserAccountId.sql diff --git a/Database/Database.Core/scripts/03-crud/02-Auth/USP_InvalidateUserCredential.sql b/src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_InvalidateUserCredential.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/02-Auth/USP_InvalidateUserCredential.sql rename to src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_InvalidateUserCredential.sql diff --git a/Database/Database.Core/scripts/03-crud/02-Auth/USP_RegisterUser.sql b/src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_RegisterUser.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/02-Auth/USP_RegisterUser.sql rename to src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_RegisterUser.sql diff --git a/Database/Database.Core/scripts/03-crud/02-Auth/USP_RotateUserCredential.sql b/src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_RotateUserCredential.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/02-Auth/USP_RotateUserCredential.sql rename to src/Core/Database/Database.Core/scripts/03-crud/02-Auth/USP_RotateUserCredential.sql diff --git a/Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql b/src/Core/Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql rename to src/Core/Database/Database.Core/scripts/03-crud/03-UserVerification/USP_AddUserVerification.sql diff --git a/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql b/src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql rename to src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCity.sql diff --git a/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql b/src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql rename to src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateCountry.sql diff --git a/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql b/src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql similarity index 100% rename from Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql rename to src/Core/Database/Database.Core/scripts/03-crud/04-Location/USP_CreateStateProvince.sql diff --git a/Database/Database.Seed/Database.Seed.csproj b/src/Core/Database/Database.Seed/Database.Seed.csproj similarity index 100% rename from Database/Database.Seed/Database.Seed.csproj rename to src/Core/Database/Database.Seed/Database.Seed.csproj diff --git a/Database/Database.Seed/ISeeder.cs b/src/Core/Database/Database.Seed/ISeeder.cs similarity index 100% rename from Database/Database.Seed/ISeeder.cs rename to src/Core/Database/Database.Seed/ISeeder.cs diff --git a/Database/Database.Seed/LocationSeeder.cs b/src/Core/Database/Database.Seed/LocationSeeder.cs similarity index 100% rename from Database/Database.Seed/LocationSeeder.cs rename to src/Core/Database/Database.Seed/LocationSeeder.cs diff --git a/Database/Database.Seed/Program.cs b/src/Core/Database/Database.Seed/Program.cs similarity index 100% rename from Database/Database.Seed/Program.cs rename to src/Core/Database/Database.Seed/Program.cs diff --git a/Database/Database.Seed/UserSeeder.cs b/src/Core/Database/Database.Seed/UserSeeder.cs similarity index 100% rename from Database/Database.Seed/UserSeeder.cs rename to src/Core/Database/Database.Seed/UserSeeder.cs diff --git a/Repository/Repository.Core/Entities/UserAccount.cs b/src/Core/Repository/Repository.Core/Entities/UserAccount.cs similarity index 100% rename from Repository/Repository.Core/Entities/UserAccount.cs rename to src/Core/Repository/Repository.Core/Entities/UserAccount.cs diff --git a/Repository/Repository.Core/Entities/UserCredential.cs b/src/Core/Repository/Repository.Core/Entities/UserCredential.cs similarity index 100% rename from Repository/Repository.Core/Entities/UserCredential.cs rename to src/Core/Repository/Repository.Core/Entities/UserCredential.cs diff --git a/Repository/Repository.Core/Entities/UserVerification.cs b/src/Core/Repository/Repository.Core/Entities/UserVerification.cs similarity index 100% rename from Repository/Repository.Core/Entities/UserVerification.cs rename to src/Core/Repository/Repository.Core/Entities/UserVerification.cs diff --git a/Repository/Repository.Core/Repositories/Repository.cs b/src/Core/Repository/Repository.Core/Repositories/Repository.cs similarity index 100% rename from Repository/Repository.Core/Repositories/Repository.cs rename to src/Core/Repository/Repository.Core/Repositories/Repository.cs diff --git a/Repository/Repository.Core/Repositories/UserAccount/IUserAccountRepository.cs b/src/Core/Repository/Repository.Core/Repositories/UserAccount/IUserAccountRepository.cs similarity index 100% rename from Repository/Repository.Core/Repositories/UserAccount/IUserAccountRepository.cs rename to src/Core/Repository/Repository.Core/Repositories/UserAccount/IUserAccountRepository.cs diff --git a/Repository/Repository.Core/Repositories/UserAccount/UserAccountRepository.cs b/src/Core/Repository/Repository.Core/Repositories/UserAccount/UserAccountRepository.cs similarity index 100% rename from Repository/Repository.Core/Repositories/UserAccount/UserAccountRepository.cs rename to src/Core/Repository/Repository.Core/Repositories/UserAccount/UserAccountRepository.cs diff --git a/Repository/Repository.Core/Repositories/UserCredential/IUserCredentialRepository.cs b/src/Core/Repository/Repository.Core/Repositories/UserCredential/IUserCredentialRepository.cs similarity index 100% rename from Repository/Repository.Core/Repositories/UserCredential/IUserCredentialRepository.cs rename to src/Core/Repository/Repository.Core/Repositories/UserCredential/IUserCredentialRepository.cs diff --git a/Repository/Repository.Core/Repositories/UserCredential/UserCredentialRepository.cs b/src/Core/Repository/Repository.Core/Repositories/UserCredential/UserCredentialRepository.cs similarity index 100% rename from Repository/Repository.Core/Repositories/UserCredential/UserCredentialRepository.cs rename to src/Core/Repository/Repository.Core/Repositories/UserCredential/UserCredentialRepository.cs diff --git a/Repository/Repository.Core/Repository.Core.csproj b/src/Core/Repository/Repository.Core/Repository.Core.csproj similarity index 100% rename from Repository/Repository.Core/Repository.Core.csproj rename to src/Core/Repository/Repository.Core/Repository.Core.csproj diff --git a/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs b/src/Core/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs similarity index 100% rename from Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs rename to src/Core/Repository/Repository.Core/Sql/DefaultSqlConnectionFactory.cs diff --git a/Repository/Repository.Core/Sql/ISqlConnectionFactory.cs b/src/Core/Repository/Repository.Core/Sql/ISqlConnectionFactory.cs similarity index 100% rename from Repository/Repository.Core/Sql/ISqlConnectionFactory.cs rename to src/Core/Repository/Repository.Core/Sql/ISqlConnectionFactory.cs diff --git a/Repository/Repository.Tests/Database/DefaultSqlConnectionFactory.test.cs b/src/Core/Repository/Repository.Tests/Database/DefaultSqlConnectionFactory.test.cs similarity index 100% rename from Repository/Repository.Tests/Database/DefaultSqlConnectionFactory.test.cs rename to src/Core/Repository/Repository.Tests/Database/DefaultSqlConnectionFactory.test.cs diff --git a/Repository/Repository.Tests/Database/TestConnectionFactory.cs b/src/Core/Repository/Repository.Tests/Database/TestConnectionFactory.cs similarity index 100% rename from Repository/Repository.Tests/Database/TestConnectionFactory.cs rename to src/Core/Repository/Repository.Tests/Database/TestConnectionFactory.cs diff --git a/Repository/Repository.Tests/Repository.Tests.csproj b/src/Core/Repository/Repository.Tests/Repository.Tests.csproj similarity index 100% rename from Repository/Repository.Tests/Repository.Tests.csproj rename to src/Core/Repository/Repository.Tests/Repository.Tests.csproj diff --git a/Repository/Repository.Tests/UserAccount/UserAccountRepository.test.cs b/src/Core/Repository/Repository.Tests/UserAccount/UserAccountRepository.test.cs similarity index 100% rename from Repository/Repository.Tests/UserAccount/UserAccountRepository.test.cs rename to src/Core/Repository/Repository.Tests/UserAccount/UserAccountRepository.test.cs diff --git a/Repository/Repository.Tests/UserCredential/UserCredentialRepository.test.cs b/src/Core/Repository/Repository.Tests/UserCredential/UserCredentialRepository.test.cs similarity index 100% rename from Repository/Repository.Tests/UserCredential/UserCredentialRepository.test.cs rename to src/Core/Repository/Repository.Tests/UserCredential/UserCredentialRepository.test.cs diff --git a/Service/Service.Core/Service.Core.csproj b/src/Core/Service/Service.Core/Service.Core.csproj similarity index 100% rename from Service/Service.Core/Service.Core.csproj rename to src/Core/Service/Service.Core/Service.Core.csproj diff --git a/Service/Service.Core/Services/AuthService.cs b/src/Core/Service/Service.Core/Services/AuthService.cs similarity index 100% rename from Service/Service.Core/Services/AuthService.cs rename to src/Core/Service/Service.Core/Services/AuthService.cs diff --git a/Service/Service.Core/Services/IAuthService.cs b/src/Core/Service/Service.Core/Services/IAuthService.cs similarity index 100% rename from Service/Service.Core/Services/IAuthService.cs rename to src/Core/Service/Service.Core/Services/IAuthService.cs diff --git a/Service/Service.Core/Services/IUserService.cs b/src/Core/Service/Service.Core/Services/IUserService.cs similarity index 100% rename from Service/Service.Core/Services/IUserService.cs rename to src/Core/Service/Service.Core/Services/IUserService.cs diff --git a/Service/Service.Core/Services/PasswordHasher.cs b/src/Core/Service/Service.Core/Services/PasswordHasher.cs similarity index 100% rename from Service/Service.Core/Services/PasswordHasher.cs rename to src/Core/Service/Service.Core/Services/PasswordHasher.cs diff --git a/Service/Service.Core/Services/UserService.cs b/src/Core/Service/Service.Core/Services/UserService.cs similarity index 100% rename from Service/Service.Core/Services/UserService.cs rename to src/Core/Service/Service.Core/Services/UserService.cs diff --git a/Website/README.old.md b/src/Website/README.old.md similarity index 100% rename from Website/README.old.md rename to src/Website/README.old.md diff --git a/Website/next.config.js b/src/Website/next.config.js similarity index 100% rename from Website/next.config.js rename to src/Website/next.config.js diff --git a/Website/package-lock.json b/src/Website/package-lock.json similarity index 100% rename from Website/package-lock.json rename to src/Website/package-lock.json diff --git a/Website/package.json b/src/Website/package.json similarity index 100% rename from Website/package.json rename to src/Website/package.json diff --git a/Website/postcss.config.js b/src/Website/postcss.config.js similarity index 100% rename from Website/postcss.config.js rename to src/Website/postcss.config.js diff --git a/Website/public/background.jpg b/src/Website/public/background.jpg similarity index 100% rename from Website/public/background.jpg rename to src/Website/public/background.jpg diff --git a/Website/public/favicon/about.txt b/src/Website/public/favicon/about.txt similarity index 100% rename from Website/public/favicon/about.txt rename to src/Website/public/favicon/about.txt diff --git a/Website/public/favicon/android-chrome-192x192.png b/src/Website/public/favicon/android-chrome-192x192.png similarity index 100% rename from Website/public/favicon/android-chrome-192x192.png rename to src/Website/public/favicon/android-chrome-192x192.png diff --git a/Website/public/favicon/android-chrome-512x512.png b/src/Website/public/favicon/android-chrome-512x512.png similarity index 100% rename from Website/public/favicon/android-chrome-512x512.png rename to src/Website/public/favicon/android-chrome-512x512.png diff --git a/Website/public/favicon/apple-touch-icon.png b/src/Website/public/favicon/apple-touch-icon.png similarity index 100% rename from Website/public/favicon/apple-touch-icon.png rename to src/Website/public/favicon/apple-touch-icon.png diff --git a/Website/public/favicon/favicon-16x16.png b/src/Website/public/favicon/favicon-16x16.png similarity index 100% rename from Website/public/favicon/favicon-16x16.png rename to src/Website/public/favicon/favicon-16x16.png diff --git a/Website/public/favicon/favicon-32x32.png b/src/Website/public/favicon/favicon-32x32.png similarity index 100% rename from Website/public/favicon/favicon-32x32.png rename to src/Website/public/favicon/favicon-32x32.png diff --git a/Website/public/favicon/favicon.ico b/src/Website/public/favicon/favicon.ico similarity index 100% rename from Website/public/favicon/favicon.ico rename to src/Website/public/favicon/favicon.ico diff --git a/Website/public/favicon/site.webmanifest b/src/Website/public/favicon/site.webmanifest similarity index 100% rename from Website/public/favicon/site.webmanifest rename to src/Website/public/favicon/site.webmanifest diff --git a/Website/public/robots.txt b/src/Website/public/robots.txt similarity index 100% rename from Website/public/robots.txt rename to src/Website/public/robots.txt diff --git a/Website/schema.svg b/src/Website/schema.svg similarity index 100% rename from Website/schema.svg rename to src/Website/schema.svg diff --git a/Website/src/components/Account/AccountInfo.tsx b/src/Website/src/components/Account/AccountInfo.tsx similarity index 100% rename from Website/src/components/Account/AccountInfo.tsx rename to src/Website/src/components/Account/AccountInfo.tsx diff --git a/Website/src/components/Account/BeerPostsByUser.tsx b/src/Website/src/components/Account/BeerPostsByUser.tsx similarity index 100% rename from Website/src/components/Account/BeerPostsByUser.tsx rename to src/Website/src/components/Account/BeerPostsByUser.tsx diff --git a/Website/src/components/Account/BreweryPostsByUser.tsx b/src/Website/src/components/Account/BreweryPostsByUser.tsx similarity index 100% rename from Website/src/components/Account/BreweryPostsByUser.tsx rename to src/Website/src/components/Account/BreweryPostsByUser.tsx diff --git a/Website/src/components/Account/DeleteAccount.tsx b/src/Website/src/components/Account/DeleteAccount.tsx similarity index 100% rename from Website/src/components/Account/DeleteAccount.tsx rename to src/Website/src/components/Account/DeleteAccount.tsx diff --git a/Website/src/components/Account/Security.tsx b/src/Website/src/components/Account/Security.tsx similarity index 100% rename from Website/src/components/Account/Security.tsx rename to src/Website/src/components/Account/Security.tsx diff --git a/Website/src/components/Account/UpdateProfileForm.tsx b/src/Website/src/components/Account/UpdateProfileForm.tsx similarity index 100% rename from Website/src/components/Account/UpdateProfileForm.tsx rename to src/Website/src/components/Account/UpdateProfileForm.tsx diff --git a/Website/src/components/Account/UpdateProfileLink.tsx b/src/Website/src/components/Account/UpdateProfileLink.tsx similarity index 100% rename from Website/src/components/Account/UpdateProfileLink.tsx rename to src/Website/src/components/Account/UpdateProfileLink.tsx diff --git a/Website/src/components/Account/UserAvatar.tsx b/src/Website/src/components/Account/UserAvatar.tsx similarity index 100% rename from Website/src/components/Account/UserAvatar.tsx rename to src/Website/src/components/Account/UserAvatar.tsx diff --git a/Website/src/components/Account/UserPosts.tsx b/src/Website/src/components/Account/UserPosts.tsx similarity index 100% rename from Website/src/components/Account/UserPosts.tsx rename to src/Website/src/components/Account/UserPosts.tsx diff --git a/Website/src/components/BeerById/BeerCommentForm.tsx b/src/Website/src/components/BeerById/BeerCommentForm.tsx similarity index 100% rename from Website/src/components/BeerById/BeerCommentForm.tsx rename to src/Website/src/components/BeerById/BeerCommentForm.tsx diff --git a/Website/src/components/BeerById/BeerInfoHeader.tsx b/src/Website/src/components/BeerById/BeerInfoHeader.tsx similarity index 100% rename from Website/src/components/BeerById/BeerInfoHeader.tsx rename to src/Website/src/components/BeerById/BeerInfoHeader.tsx diff --git a/Website/src/components/BeerById/BeerPostCommentsSection.tsx b/src/Website/src/components/BeerById/BeerPostCommentsSection.tsx similarity index 100% rename from Website/src/components/BeerById/BeerPostCommentsSection.tsx rename to src/Website/src/components/BeerById/BeerPostCommentsSection.tsx diff --git a/Website/src/components/BeerById/BeerPostLikeButton.tsx b/src/Website/src/components/BeerById/BeerPostLikeButton.tsx similarity index 100% rename from Website/src/components/BeerById/BeerPostLikeButton.tsx rename to src/Website/src/components/BeerById/BeerPostLikeButton.tsx diff --git a/Website/src/components/BeerById/BeerRecommendationLoadingComponent.tsx b/src/Website/src/components/BeerById/BeerRecommendationLoadingComponent.tsx similarity index 100% rename from Website/src/components/BeerById/BeerRecommendationLoadingComponent.tsx rename to src/Website/src/components/BeerById/BeerRecommendationLoadingComponent.tsx diff --git a/Website/src/components/BeerById/BeerRecommendations.tsx b/src/Website/src/components/BeerById/BeerRecommendations.tsx similarity index 100% rename from Website/src/components/BeerById/BeerRecommendations.tsx rename to src/Website/src/components/BeerById/BeerRecommendations.tsx diff --git a/Website/src/components/BeerIndex/BeerCard.tsx b/src/Website/src/components/BeerIndex/BeerCard.tsx similarity index 100% rename from Website/src/components/BeerIndex/BeerCard.tsx rename to src/Website/src/components/BeerIndex/BeerCard.tsx diff --git a/Website/src/components/BeerStyleById/BeerStyleBeerSection.tsx b/src/Website/src/components/BeerStyleById/BeerStyleBeerSection.tsx similarity index 100% rename from Website/src/components/BeerStyleById/BeerStyleBeerSection.tsx rename to src/Website/src/components/BeerStyleById/BeerStyleBeerSection.tsx diff --git a/Website/src/components/BeerStyleById/BeerStyleCommentForm.tsx b/src/Website/src/components/BeerStyleById/BeerStyleCommentForm.tsx similarity index 100% rename from Website/src/components/BeerStyleById/BeerStyleCommentForm.tsx rename to src/Website/src/components/BeerStyleById/BeerStyleCommentForm.tsx diff --git a/Website/src/components/BeerStyleById/BeerStyleCommentSection.tsx b/src/Website/src/components/BeerStyleById/BeerStyleCommentSection.tsx similarity index 100% rename from Website/src/components/BeerStyleById/BeerStyleCommentSection.tsx rename to src/Website/src/components/BeerStyleById/BeerStyleCommentSection.tsx diff --git a/Website/src/components/BeerStyleById/BeerStyleHeader.tsx b/src/Website/src/components/BeerStyleById/BeerStyleHeader.tsx similarity index 100% rename from Website/src/components/BeerStyleById/BeerStyleHeader.tsx rename to src/Website/src/components/BeerStyleById/BeerStyleHeader.tsx diff --git a/Website/src/components/BeerStyleById/BeerStyleLikeButton.tsx b/src/Website/src/components/BeerStyleById/BeerStyleLikeButton.tsx similarity index 100% rename from Website/src/components/BeerStyleById/BeerStyleLikeButton.tsx rename to src/Website/src/components/BeerStyleById/BeerStyleLikeButton.tsx diff --git a/Website/src/components/BeerStyleIndex/BeerStyleCard.tsx b/src/Website/src/components/BeerStyleIndex/BeerStyleCard.tsx similarity index 100% rename from Website/src/components/BeerStyleIndex/BeerStyleCard.tsx rename to src/Website/src/components/BeerStyleIndex/BeerStyleCard.tsx diff --git a/Website/src/components/BreweryById/BreweryBeerSection.tsx b/src/Website/src/components/BreweryById/BreweryBeerSection.tsx similarity index 100% rename from Website/src/components/BreweryById/BreweryBeerSection.tsx rename to src/Website/src/components/BreweryById/BreweryBeerSection.tsx diff --git a/Website/src/components/BreweryById/BreweryCommentForm.tsx b/src/Website/src/components/BreweryById/BreweryCommentForm.tsx similarity index 100% rename from Website/src/components/BreweryById/BreweryCommentForm.tsx rename to src/Website/src/components/BreweryById/BreweryCommentForm.tsx diff --git a/Website/src/components/BreweryById/BreweryCommentsSection.tsx b/src/Website/src/components/BreweryById/BreweryCommentsSection.tsx similarity index 100% rename from Website/src/components/BreweryById/BreweryCommentsSection.tsx rename to src/Website/src/components/BreweryById/BreweryCommentsSection.tsx diff --git a/Website/src/components/BreweryById/BreweryInfoHeader.tsx b/src/Website/src/components/BreweryById/BreweryInfoHeader.tsx similarity index 100% rename from Website/src/components/BreweryById/BreweryInfoHeader.tsx rename to src/Website/src/components/BreweryById/BreweryInfoHeader.tsx diff --git a/Website/src/components/BreweryById/BreweryPostMap.tsx b/src/Website/src/components/BreweryById/BreweryPostMap.tsx similarity index 100% rename from Website/src/components/BreweryById/BreweryPostMap.tsx rename to src/Website/src/components/BreweryById/BreweryPostMap.tsx diff --git a/Website/src/components/BreweryIndex/BreweryCard.tsx b/src/Website/src/components/BreweryIndex/BreweryCard.tsx similarity index 100% rename from Website/src/components/BreweryIndex/BreweryCard.tsx rename to src/Website/src/components/BreweryIndex/BreweryCard.tsx diff --git a/Website/src/components/BreweryIndex/BreweryPostLikeButton.tsx b/src/Website/src/components/BreweryIndex/BreweryPostLikeButton.tsx similarity index 100% rename from Website/src/components/BreweryIndex/BreweryPostLikeButton.tsx rename to src/Website/src/components/BreweryIndex/BreweryPostLikeButton.tsx diff --git a/Website/src/components/BreweryPost/CreateBreweryPostForm.tsx b/src/Website/src/components/BreweryPost/CreateBreweryPostForm.tsx similarity index 100% rename from Website/src/components/BreweryPost/CreateBreweryPostForm.tsx rename to src/Website/src/components/BreweryPost/CreateBreweryPostForm.tsx diff --git a/Website/src/components/Comments/CommentCardBody.tsx b/src/Website/src/components/Comments/CommentCardBody.tsx similarity index 100% rename from Website/src/components/Comments/CommentCardBody.tsx rename to src/Website/src/components/Comments/CommentCardBody.tsx diff --git a/Website/src/components/Comments/CommentCardDropdown.tsx b/src/Website/src/components/Comments/CommentCardDropdown.tsx similarity index 100% rename from Website/src/components/Comments/CommentCardDropdown.tsx rename to src/Website/src/components/Comments/CommentCardDropdown.tsx diff --git a/Website/src/components/Comments/CommentContentBody.tsx b/src/Website/src/components/Comments/CommentContentBody.tsx similarity index 100% rename from Website/src/components/Comments/CommentContentBody.tsx rename to src/Website/src/components/Comments/CommentContentBody.tsx diff --git a/Website/src/components/Comments/CommentForm.tsx b/src/Website/src/components/Comments/CommentForm.tsx similarity index 100% rename from Website/src/components/Comments/CommentForm.tsx rename to src/Website/src/components/Comments/CommentForm.tsx diff --git a/Website/src/components/Comments/CommentLoadingCardBody.tsx b/src/Website/src/components/Comments/CommentLoadingCardBody.tsx similarity index 100% rename from Website/src/components/Comments/CommentLoadingCardBody.tsx rename to src/Website/src/components/Comments/CommentLoadingCardBody.tsx diff --git a/Website/src/components/Comments/CommentLoadingComponent.tsx b/src/Website/src/components/Comments/CommentLoadingComponent.tsx similarity index 100% rename from Website/src/components/Comments/CommentLoadingComponent.tsx rename to src/Website/src/components/Comments/CommentLoadingComponent.tsx diff --git a/Website/src/components/Comments/CommentsComponent.tsx b/src/Website/src/components/Comments/CommentsComponent.tsx similarity index 100% rename from Website/src/components/Comments/CommentsComponent.tsx rename to src/Website/src/components/Comments/CommentsComponent.tsx diff --git a/Website/src/components/Comments/EditCommentBody.tsx b/src/Website/src/components/Comments/EditCommentBody.tsx similarity index 100% rename from Website/src/components/Comments/EditCommentBody.tsx rename to src/Website/src/components/Comments/EditCommentBody.tsx diff --git a/Website/src/components/Comments/NoCommentsCard.tsx b/src/Website/src/components/Comments/NoCommentsCard.tsx similarity index 100% rename from Website/src/components/Comments/NoCommentsCard.tsx rename to src/Website/src/components/Comments/NoCommentsCard.tsx diff --git a/Website/src/components/Comments/types/index.ts b/src/Website/src/components/Comments/types/index.ts similarity index 100% rename from Website/src/components/Comments/types/index.ts rename to src/Website/src/components/Comments/types/index.ts diff --git a/Website/src/components/CreateBeerPostForm.tsx b/src/Website/src/components/CreateBeerPostForm.tsx similarity index 100% rename from Website/src/components/CreateBeerPostForm.tsx rename to src/Website/src/components/CreateBeerPostForm.tsx diff --git a/Website/src/components/EditBeerPostForm.tsx b/src/Website/src/components/EditBeerPostForm.tsx similarity index 100% rename from Website/src/components/EditBeerPostForm.tsx rename to src/Website/src/components/EditBeerPostForm.tsx diff --git a/Website/src/components/EditBreweryPostForm.tsx b/src/Website/src/components/EditBreweryPostForm.tsx similarity index 100% rename from Website/src/components/EditBreweryPostForm.tsx rename to src/Website/src/components/EditBreweryPostForm.tsx diff --git a/Website/src/components/Login/LoginForm.tsx b/src/Website/src/components/Login/LoginForm.tsx similarity index 100% rename from Website/src/components/Login/LoginForm.tsx rename to src/Website/src/components/Login/LoginForm.tsx diff --git a/Website/src/components/RegisterUserForm.tsx b/src/Website/src/components/RegisterUserForm.tsx similarity index 100% rename from Website/src/components/RegisterUserForm.tsx rename to src/Website/src/components/RegisterUserForm.tsx diff --git a/Website/src/components/UserPage/UserFollowButton.tsx b/src/Website/src/components/UserPage/UserFollowButton.tsx similarity index 100% rename from Website/src/components/UserPage/UserFollowButton.tsx rename to src/Website/src/components/UserPage/UserFollowButton.tsx diff --git a/Website/src/components/UserPage/UserHeader.tsx b/src/Website/src/components/UserPage/UserHeader.tsx similarity index 100% rename from Website/src/components/UserPage/UserHeader.tsx rename to src/Website/src/components/UserPage/UserHeader.tsx diff --git a/Website/src/components/ui/CustomToast.tsx b/src/Website/src/components/ui/CustomToast.tsx similarity index 100% rename from Website/src/components/ui/CustomToast.tsx rename to src/Website/src/components/ui/CustomToast.tsx diff --git a/Website/src/components/ui/Layout.tsx b/src/Website/src/components/ui/Layout.tsx similarity index 100% rename from Website/src/components/ui/Layout.tsx rename to src/Website/src/components/ui/Layout.tsx diff --git a/Website/src/components/ui/LikeButton.tsx b/src/Website/src/components/ui/LikeButton.tsx similarity index 100% rename from Website/src/components/ui/LikeButton.tsx rename to src/Website/src/components/ui/LikeButton.tsx diff --git a/Website/src/components/ui/LoadingCard.tsx b/src/Website/src/components/ui/LoadingCard.tsx similarity index 100% rename from Website/src/components/ui/LoadingCard.tsx rename to src/Website/src/components/ui/LoadingCard.tsx diff --git a/Website/src/components/ui/LocationMarker.tsx b/src/Website/src/components/ui/LocationMarker.tsx similarity index 100% rename from Website/src/components/ui/LocationMarker.tsx rename to src/Website/src/components/ui/LocationMarker.tsx diff --git a/Website/src/components/ui/Navbar.tsx b/src/Website/src/components/ui/Navbar.tsx similarity index 100% rename from Website/src/components/ui/Navbar.tsx rename to src/Website/src/components/ui/Navbar.tsx diff --git a/Website/src/components/ui/SmLoadingCard.tsx b/src/Website/src/components/ui/SmLoadingCard.tsx similarity index 100% rename from Website/src/components/ui/SmLoadingCard.tsx rename to src/Website/src/components/ui/SmLoadingCard.tsx diff --git a/Website/src/components/ui/Spinner.tsx b/src/Website/src/components/ui/Spinner.tsx similarity index 100% rename from Website/src/components/ui/Spinner.tsx rename to src/Website/src/components/ui/Spinner.tsx diff --git a/Website/src/components/ui/forms/Button.tsx b/src/Website/src/components/ui/forms/Button.tsx similarity index 100% rename from Website/src/components/ui/forms/Button.tsx rename to src/Website/src/components/ui/forms/Button.tsx diff --git a/Website/src/components/ui/forms/FormError.tsx b/src/Website/src/components/ui/forms/FormError.tsx similarity index 100% rename from Website/src/components/ui/forms/FormError.tsx rename to src/Website/src/components/ui/forms/FormError.tsx diff --git a/Website/src/components/ui/forms/FormInfo.tsx b/src/Website/src/components/ui/forms/FormInfo.tsx similarity index 100% rename from Website/src/components/ui/forms/FormInfo.tsx rename to src/Website/src/components/ui/forms/FormInfo.tsx diff --git a/Website/src/components/ui/forms/FormLabel.tsx b/src/Website/src/components/ui/forms/FormLabel.tsx similarity index 100% rename from Website/src/components/ui/forms/FormLabel.tsx rename to src/Website/src/components/ui/forms/FormLabel.tsx diff --git a/Website/src/components/ui/forms/FormPageLayout.tsx b/src/Website/src/components/ui/forms/FormPageLayout.tsx similarity index 100% rename from Website/src/components/ui/forms/FormPageLayout.tsx rename to src/Website/src/components/ui/forms/FormPageLayout.tsx diff --git a/Website/src/components/ui/forms/FormSegment.tsx b/src/Website/src/components/ui/forms/FormSegment.tsx similarity index 100% rename from Website/src/components/ui/forms/FormSegment.tsx rename to src/Website/src/components/ui/forms/FormSegment.tsx diff --git a/Website/src/components/ui/forms/FormSelect.tsx b/src/Website/src/components/ui/forms/FormSelect.tsx similarity index 100% rename from Website/src/components/ui/forms/FormSelect.tsx rename to src/Website/src/components/ui/forms/FormSelect.tsx diff --git a/Website/src/components/ui/forms/FormTextArea.tsx b/src/Website/src/components/ui/forms/FormTextArea.tsx similarity index 100% rename from Website/src/components/ui/forms/FormTextArea.tsx rename to src/Website/src/components/ui/forms/FormTextArea.tsx diff --git a/Website/src/components/ui/forms/FormTextInput.tsx b/src/Website/src/components/ui/forms/FormTextInput.tsx similarity index 100% rename from Website/src/components/ui/forms/FormTextInput.tsx rename to src/Website/src/components/ui/forms/FormTextInput.tsx diff --git a/Website/src/components/ui/maps/ControlPanel.tsx b/src/Website/src/components/ui/maps/ControlPanel.tsx similarity index 100% rename from Website/src/components/ui/maps/ControlPanel.tsx rename to src/Website/src/components/ui/maps/ControlPanel.tsx diff --git a/Website/src/config/auth/cookie.ts b/src/Website/src/config/auth/cookie.ts similarity index 100% rename from Website/src/config/auth/cookie.ts rename to src/Website/src/config/auth/cookie.ts diff --git a/Website/src/config/auth/localStrat.ts b/src/Website/src/config/auth/localStrat.ts similarity index 100% rename from Website/src/config/auth/localStrat.ts rename to src/Website/src/config/auth/localStrat.ts diff --git a/Website/src/config/auth/passwordFns.ts b/src/Website/src/config/auth/passwordFns.ts similarity index 100% rename from Website/src/config/auth/passwordFns.ts rename to src/Website/src/config/auth/passwordFns.ts diff --git a/Website/src/config/auth/session.ts b/src/Website/src/config/auth/session.ts similarity index 100% rename from Website/src/config/auth/session.ts rename to src/Website/src/config/auth/session.ts diff --git a/Website/src/config/auth/types.ts b/src/Website/src/config/auth/types.ts similarity index 100% rename from Website/src/config/auth/types.ts rename to src/Website/src/config/auth/types.ts diff --git a/Website/src/config/cloudinary/CloudinaryStorage.ts b/src/Website/src/config/cloudinary/CloudinaryStorage.ts similarity index 100% rename from Website/src/config/cloudinary/CloudinaryStorage.ts rename to src/Website/src/config/cloudinary/CloudinaryStorage.ts diff --git a/Website/src/config/cloudinary/helpers/deleteImage.ts b/src/Website/src/config/cloudinary/helpers/deleteImage.ts similarity index 100% rename from Website/src/config/cloudinary/helpers/deleteImage.ts rename to src/Website/src/config/cloudinary/helpers/deleteImage.ts diff --git a/Website/src/config/cloudinary/index.ts b/src/Website/src/config/cloudinary/index.ts similarity index 100% rename from Website/src/config/cloudinary/index.ts rename to src/Website/src/config/cloudinary/index.ts diff --git a/Website/src/config/env/index.ts b/src/Website/src/config/env/index.ts similarity index 100% rename from Website/src/config/env/index.ts rename to src/Website/src/config/env/index.ts diff --git a/Website/src/config/jwt/index.ts b/src/Website/src/config/jwt/index.ts similarity index 100% rename from Website/src/config/jwt/index.ts rename to src/Website/src/config/jwt/index.ts diff --git a/Website/src/config/mapbox/geocoder.ts b/src/Website/src/config/mapbox/geocoder.ts similarity index 100% rename from Website/src/config/mapbox/geocoder.ts rename to src/Website/src/config/mapbox/geocoder.ts diff --git a/Website/src/config/multer/uploadMiddleware.ts b/src/Website/src/config/multer/uploadMiddleware.ts similarity index 100% rename from Website/src/config/multer/uploadMiddleware.ts rename to src/Website/src/config/multer/uploadMiddleware.ts diff --git a/Website/src/config/nextConnect/NextConnectOptions.ts b/src/Website/src/config/nextConnect/NextConnectOptions.ts similarity index 100% rename from Website/src/config/nextConnect/NextConnectOptions.ts rename to src/Website/src/config/nextConnect/NextConnectOptions.ts diff --git a/Website/src/config/nextConnect/middleware/getCurrentUser.ts b/src/Website/src/config/nextConnect/middleware/getCurrentUser.ts similarity index 100% rename from Website/src/config/nextConnect/middleware/getCurrentUser.ts rename to src/Website/src/config/nextConnect/middleware/getCurrentUser.ts diff --git a/Website/src/config/nextConnect/middleware/validateRequest.ts b/src/Website/src/config/nextConnect/middleware/validateRequest.ts similarity index 100% rename from Website/src/config/nextConnect/middleware/validateRequest.ts rename to src/Website/src/config/nextConnect/middleware/validateRequest.ts diff --git a/Website/src/config/pino/logger.ts b/src/Website/src/config/pino/logger.ts similarity index 100% rename from Website/src/config/pino/logger.ts rename to src/Website/src/config/pino/logger.ts diff --git a/Website/src/config/sparkpost/sendEmail.ts b/src/Website/src/config/sparkpost/sendEmail.ts similarity index 100% rename from Website/src/config/sparkpost/sendEmail.ts rename to src/Website/src/config/sparkpost/sendEmail.ts diff --git a/Website/src/config/util/ServerError.ts b/src/Website/src/config/util/ServerError.ts similarity index 100% rename from Website/src/config/util/ServerError.ts rename to src/Website/src/config/util/ServerError.ts diff --git a/Website/src/contexts/UserContext.tsx b/src/Website/src/contexts/UserContext.tsx similarity index 100% rename from Website/src/contexts/UserContext.tsx rename to src/Website/src/contexts/UserContext.tsx diff --git a/Website/src/controllers/comments/beer-comments/index.ts b/src/Website/src/controllers/comments/beer-comments/index.ts similarity index 100% rename from Website/src/controllers/comments/beer-comments/index.ts rename to src/Website/src/controllers/comments/beer-comments/index.ts diff --git a/Website/src/controllers/comments/beer-style-comments/index.ts b/src/Website/src/controllers/comments/beer-style-comments/index.ts similarity index 100% rename from Website/src/controllers/comments/beer-style-comments/index.ts rename to src/Website/src/controllers/comments/beer-style-comments/index.ts diff --git a/Website/src/controllers/comments/brewery-comments/index.ts b/src/Website/src/controllers/comments/brewery-comments/index.ts similarity index 100% rename from Website/src/controllers/comments/brewery-comments/index.ts rename to src/Website/src/controllers/comments/brewery-comments/index.ts diff --git a/Website/src/controllers/comments/types/index.ts b/src/Website/src/controllers/comments/types/index.ts similarity index 100% rename from Website/src/controllers/comments/types/index.ts rename to src/Website/src/controllers/comments/types/index.ts diff --git a/Website/src/controllers/images/beer-images/index.ts b/src/Website/src/controllers/images/beer-images/index.ts similarity index 100% rename from Website/src/controllers/images/beer-images/index.ts rename to src/Website/src/controllers/images/beer-images/index.ts diff --git a/Website/src/controllers/images/brewery-images/index.ts b/src/Website/src/controllers/images/brewery-images/index.ts similarity index 100% rename from Website/src/controllers/images/brewery-images/index.ts rename to src/Website/src/controllers/images/brewery-images/index.ts diff --git a/Website/src/controllers/images/types/index.ts b/src/Website/src/controllers/images/types/index.ts similarity index 100% rename from Website/src/controllers/images/types/index.ts rename to src/Website/src/controllers/images/types/index.ts diff --git a/Website/src/controllers/likes/beer-posts-likes/index.ts b/src/Website/src/controllers/likes/beer-posts-likes/index.ts similarity index 100% rename from Website/src/controllers/likes/beer-posts-likes/index.ts rename to src/Website/src/controllers/likes/beer-posts-likes/index.ts diff --git a/Website/src/controllers/likes/beer-style-likes/index.ts b/src/Website/src/controllers/likes/beer-style-likes/index.ts similarity index 100% rename from Website/src/controllers/likes/beer-style-likes/index.ts rename to src/Website/src/controllers/likes/beer-style-likes/index.ts diff --git a/Website/src/controllers/likes/brewery-post-likes/index.ts b/src/Website/src/controllers/likes/brewery-post-likes/index.ts similarity index 100% rename from Website/src/controllers/likes/brewery-post-likes/index.ts rename to src/Website/src/controllers/likes/brewery-post-likes/index.ts diff --git a/Website/src/controllers/likes/types/index.ts b/src/Website/src/controllers/likes/types/index.ts similarity index 100% rename from Website/src/controllers/likes/types/index.ts rename to src/Website/src/controllers/likes/types/index.ts diff --git a/Website/src/controllers/posts/beer-posts/index.ts b/src/Website/src/controllers/posts/beer-posts/index.ts similarity index 100% rename from Website/src/controllers/posts/beer-posts/index.ts rename to src/Website/src/controllers/posts/beer-posts/index.ts diff --git a/Website/src/controllers/posts/beer-posts/types/index.ts b/src/Website/src/controllers/posts/beer-posts/types/index.ts similarity index 100% rename from Website/src/controllers/posts/beer-posts/types/index.ts rename to src/Website/src/controllers/posts/beer-posts/types/index.ts diff --git a/Website/src/controllers/posts/beer-styles/index.ts b/src/Website/src/controllers/posts/beer-styles/index.ts similarity index 100% rename from Website/src/controllers/posts/beer-styles/index.ts rename to src/Website/src/controllers/posts/beer-styles/index.ts diff --git a/Website/src/controllers/posts/beer-styles/types/index.ts b/src/Website/src/controllers/posts/beer-styles/types/index.ts similarity index 100% rename from Website/src/controllers/posts/beer-styles/types/index.ts rename to src/Website/src/controllers/posts/beer-styles/types/index.ts diff --git a/Website/src/controllers/posts/breweries/index.ts b/src/Website/src/controllers/posts/breweries/index.ts similarity index 100% rename from Website/src/controllers/posts/breweries/index.ts rename to src/Website/src/controllers/posts/breweries/index.ts diff --git a/Website/src/controllers/posts/breweries/types/index.ts b/src/Website/src/controllers/posts/breweries/types/index.ts similarity index 100% rename from Website/src/controllers/posts/breweries/types/index.ts rename to src/Website/src/controllers/posts/breweries/types/index.ts diff --git a/Website/src/controllers/posts/types/index.ts b/src/Website/src/controllers/posts/types/index.ts similarity index 100% rename from Website/src/controllers/posts/types/index.ts rename to src/Website/src/controllers/posts/types/index.ts diff --git a/Website/src/controllers/users/auth/index.ts b/src/Website/src/controllers/users/auth/index.ts similarity index 100% rename from Website/src/controllers/users/auth/index.ts rename to src/Website/src/controllers/users/auth/index.ts diff --git a/Website/src/controllers/users/auth/types/index.ts b/src/Website/src/controllers/users/auth/types/index.ts similarity index 100% rename from Website/src/controllers/users/auth/types/index.ts rename to src/Website/src/controllers/users/auth/types/index.ts diff --git a/Website/src/controllers/users/profile/index.ts b/src/Website/src/controllers/users/profile/index.ts similarity index 100% rename from Website/src/controllers/users/profile/index.ts rename to src/Website/src/controllers/users/profile/index.ts diff --git a/Website/src/controllers/users/profile/types/index.ts b/src/Website/src/controllers/users/profile/types/index.ts similarity index 100% rename from Website/src/controllers/users/profile/types/index.ts rename to src/Website/src/controllers/users/profile/types/index.ts diff --git a/Website/src/emails/ForgotEmail.tsx b/src/Website/src/emails/ForgotEmail.tsx similarity index 100% rename from Website/src/emails/ForgotEmail.tsx rename to src/Website/src/emails/ForgotEmail.tsx diff --git a/Website/src/emails/WelcomeEmail.tsx b/src/Website/src/emails/WelcomeEmail.tsx similarity index 100% rename from Website/src/emails/WelcomeEmail.tsx rename to src/Website/src/emails/WelcomeEmail.tsx diff --git a/Website/src/hooks/auth/useConfirmUser.ts b/src/Website/src/hooks/auth/useConfirmUser.ts similarity index 100% rename from Website/src/hooks/auth/useConfirmUser.ts rename to src/Website/src/hooks/auth/useConfirmUser.ts diff --git a/Website/src/hooks/auth/useRedirectIfLoggedIn.ts b/src/Website/src/hooks/auth/useRedirectIfLoggedIn.ts similarity index 100% rename from Website/src/hooks/auth/useRedirectIfLoggedIn.ts rename to src/Website/src/hooks/auth/useRedirectIfLoggedIn.ts diff --git a/Website/src/hooks/auth/useUser.ts b/src/Website/src/hooks/auth/useUser.ts similarity index 100% rename from Website/src/hooks/auth/useUser.ts rename to src/Website/src/hooks/auth/useUser.ts diff --git a/Website/src/hooks/data-fetching/beer-comments/useBeerPostComments.ts b/src/Website/src/hooks/data-fetching/beer-comments/useBeerPostComments.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-comments/useBeerPostComments.ts rename to src/Website/src/hooks/data-fetching/beer-comments/useBeerPostComments.ts diff --git a/Website/src/hooks/data-fetching/beer-likes/useBeerPostLikeCount.ts b/src/Website/src/hooks/data-fetching/beer-likes/useBeerPostLikeCount.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-likes/useBeerPostLikeCount.ts rename to src/Website/src/hooks/data-fetching/beer-likes/useBeerPostLikeCount.ts diff --git a/Website/src/hooks/data-fetching/beer-likes/useCheckIfUserLikesBeerPost.ts b/src/Website/src/hooks/data-fetching/beer-likes/useCheckIfUserLikesBeerPost.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-likes/useCheckIfUserLikesBeerPost.ts rename to src/Website/src/hooks/data-fetching/beer-likes/useCheckIfUserLikesBeerPost.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerPostSearch.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerPostSearch.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerPostSearch.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerPostSearch.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerPosts.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerPosts.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerPosts.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerPosts.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBeerStyles.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBeerStyles.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBeerStyles.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBeerStyles.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBrewery.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBrewery.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBrewery.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByBrewery.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByUser.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByUser.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerPostsByUser.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerPostsByUser.ts diff --git a/Website/src/hooks/data-fetching/beer-posts/useBeerRecommendations.ts b/src/Website/src/hooks/data-fetching/beer-posts/useBeerRecommendations.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-posts/useBeerRecommendations.ts rename to src/Website/src/hooks/data-fetching/beer-posts/useBeerRecommendations.ts diff --git a/Website/src/hooks/data-fetching/beer-style-comments/useBeerStyleComments.ts b/src/Website/src/hooks/data-fetching/beer-style-comments/useBeerStyleComments.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-style-comments/useBeerStyleComments.ts rename to src/Website/src/hooks/data-fetching/beer-style-comments/useBeerStyleComments.ts diff --git a/Website/src/hooks/data-fetching/beer-style-likes/useBeerStyleLikeCount.ts b/src/Website/src/hooks/data-fetching/beer-style-likes/useBeerStyleLikeCount.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-style-likes/useBeerStyleLikeCount.ts rename to src/Website/src/hooks/data-fetching/beer-style-likes/useBeerStyleLikeCount.ts diff --git a/Website/src/hooks/data-fetching/beer-style-likes/useCheckIfUserLikesBeerPost.ts b/src/Website/src/hooks/data-fetching/beer-style-likes/useCheckIfUserLikesBeerPost.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-style-likes/useCheckIfUserLikesBeerPost.ts rename to src/Website/src/hooks/data-fetching/beer-style-likes/useCheckIfUserLikesBeerPost.ts diff --git a/Website/src/hooks/data-fetching/beer-styles/useBeerStyles.ts b/src/Website/src/hooks/data-fetching/beer-styles/useBeerStyles.ts similarity index 100% rename from Website/src/hooks/data-fetching/beer-styles/useBeerStyles.ts rename to src/Website/src/hooks/data-fetching/beer-styles/useBeerStyles.ts diff --git a/Website/src/hooks/data-fetching/brewery-comments/useBreweryPostComments.ts b/src/Website/src/hooks/data-fetching/brewery-comments/useBreweryPostComments.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-comments/useBreweryPostComments.ts rename to src/Website/src/hooks/data-fetching/brewery-comments/useBreweryPostComments.ts diff --git a/Website/src/hooks/data-fetching/brewery-likes/useCheckIfUserLikesBreweryPost.ts b/src/Website/src/hooks/data-fetching/brewery-likes/useCheckIfUserLikesBreweryPost.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-likes/useCheckIfUserLikesBreweryPost.ts rename to src/Website/src/hooks/data-fetching/brewery-likes/useCheckIfUserLikesBreweryPost.ts diff --git a/Website/src/hooks/data-fetching/brewery-likes/useGetBreweryPostLikeCount.ts b/src/Website/src/hooks/data-fetching/brewery-likes/useGetBreweryPostLikeCount.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-likes/useGetBreweryPostLikeCount.ts rename to src/Website/src/hooks/data-fetching/brewery-likes/useGetBreweryPostLikeCount.ts diff --git a/Website/src/hooks/data-fetching/brewery-posts/useBreweryMapPagePosts.ts b/src/Website/src/hooks/data-fetching/brewery-posts/useBreweryMapPagePosts.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-posts/useBreweryMapPagePosts.ts rename to src/Website/src/hooks/data-fetching/brewery-posts/useBreweryMapPagePosts.ts diff --git a/Website/src/hooks/data-fetching/brewery-posts/useBreweryPosts.ts b/src/Website/src/hooks/data-fetching/brewery-posts/useBreweryPosts.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-posts/useBreweryPosts.ts rename to src/Website/src/hooks/data-fetching/brewery-posts/useBreweryPosts.ts diff --git a/Website/src/hooks/data-fetching/brewery-posts/useBreweryPostsByUser.ts b/src/Website/src/hooks/data-fetching/brewery-posts/useBreweryPostsByUser.ts similarity index 100% rename from Website/src/hooks/data-fetching/brewery-posts/useBreweryPostsByUser.ts rename to src/Website/src/hooks/data-fetching/brewery-posts/useBreweryPostsByUser.ts diff --git a/Website/src/hooks/data-fetching/user-follows/useFollowStatus.ts b/src/Website/src/hooks/data-fetching/user-follows/useFollowStatus.ts similarity index 100% rename from Website/src/hooks/data-fetching/user-follows/useFollowStatus.ts rename to src/Website/src/hooks/data-fetching/user-follows/useFollowStatus.ts diff --git a/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowedByUser.ts b/src/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowedByUser.ts similarity index 100% rename from Website/src/hooks/data-fetching/user-follows/useGetUsersFollowedByUser.ts rename to src/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowedByUser.ts diff --git a/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowingUser.ts b/src/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowingUser.ts similarity index 100% rename from Website/src/hooks/data-fetching/user-follows/useGetUsersFollowingUser.ts rename to src/Website/src/hooks/data-fetching/user-follows/useGetUsersFollowingUser.ts diff --git a/Website/src/hooks/utilities/useGeolocation.ts b/src/Website/src/hooks/utilities/useGeolocation.ts similarity index 100% rename from Website/src/hooks/utilities/useGeolocation.ts rename to src/Website/src/hooks/utilities/useGeolocation.ts diff --git a/Website/src/hooks/utilities/useMediaQuery.ts b/src/Website/src/hooks/utilities/useMediaQuery.ts similarity index 100% rename from Website/src/hooks/utilities/useMediaQuery.ts rename to src/Website/src/hooks/utilities/useMediaQuery.ts diff --git a/Website/src/hooks/utilities/useNavbar.ts b/src/Website/src/hooks/utilities/useNavbar.ts similarity index 100% rename from Website/src/hooks/utilities/useNavbar.ts rename to src/Website/src/hooks/utilities/useNavbar.ts diff --git a/Website/src/hooks/utilities/useTheme.ts b/src/Website/src/hooks/utilities/useTheme.ts similarity index 100% rename from Website/src/hooks/utilities/useTheme.ts rename to src/Website/src/hooks/utilities/useTheme.ts diff --git a/Website/src/hooks/utilities/useTimeDistance.ts b/src/Website/src/hooks/utilities/useTimeDistance.ts similarity index 100% rename from Website/src/hooks/utilities/useTimeDistance.ts rename to src/Website/src/hooks/utilities/useTimeDistance.ts diff --git a/Website/src/pages/404.tsx b/src/Website/src/pages/404.tsx similarity index 100% rename from Website/src/pages/404.tsx rename to src/Website/src/pages/404.tsx diff --git a/Website/src/pages/500.tsx b/src/Website/src/pages/500.tsx similarity index 100% rename from Website/src/pages/500.tsx rename to src/Website/src/pages/500.tsx diff --git a/Website/src/pages/_app.tsx b/src/Website/src/pages/_app.tsx similarity index 100% rename from Website/src/pages/_app.tsx rename to src/Website/src/pages/_app.tsx diff --git a/Website/src/pages/_document.tsx b/src/Website/src/pages/_document.tsx similarity index 100% rename from Website/src/pages/_document.tsx rename to src/Website/src/pages/_document.tsx diff --git a/Website/src/pages/api/beers/[postId]/comments/[commentId].ts b/src/Website/src/pages/api/beers/[postId]/comments/[commentId].ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/comments/[commentId].ts rename to src/Website/src/pages/api/beers/[postId]/comments/[commentId].ts diff --git a/Website/src/pages/api/beers/[postId]/comments/index.ts b/src/Website/src/pages/api/beers/[postId]/comments/index.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/comments/index.ts rename to src/Website/src/pages/api/beers/[postId]/comments/index.ts diff --git a/Website/src/pages/api/beers/[postId]/images/index.ts b/src/Website/src/pages/api/beers/[postId]/images/index.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/images/index.ts rename to src/Website/src/pages/api/beers/[postId]/images/index.ts diff --git a/Website/src/pages/api/beers/[postId]/index.ts b/src/Website/src/pages/api/beers/[postId]/index.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/index.ts rename to src/Website/src/pages/api/beers/[postId]/index.ts diff --git a/Website/src/pages/api/beers/[postId]/like/index.ts b/src/Website/src/pages/api/beers/[postId]/like/index.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/like/index.ts rename to src/Website/src/pages/api/beers/[postId]/like/index.ts diff --git a/Website/src/pages/api/beers/[postId]/like/is-liked.ts b/src/Website/src/pages/api/beers/[postId]/like/is-liked.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/like/is-liked.ts rename to src/Website/src/pages/api/beers/[postId]/like/is-liked.ts diff --git a/Website/src/pages/api/beers/[postId]/recommendations.ts b/src/Website/src/pages/api/beers/[postId]/recommendations.ts similarity index 100% rename from Website/src/pages/api/beers/[postId]/recommendations.ts rename to src/Website/src/pages/api/beers/[postId]/recommendations.ts diff --git a/Website/src/pages/api/beers/create.ts b/src/Website/src/pages/api/beers/create.ts similarity index 100% rename from Website/src/pages/api/beers/create.ts rename to src/Website/src/pages/api/beers/create.ts diff --git a/Website/src/pages/api/beers/index.ts b/src/Website/src/pages/api/beers/index.ts similarity index 100% rename from Website/src/pages/api/beers/index.ts rename to src/Website/src/pages/api/beers/index.ts diff --git a/Website/src/pages/api/beers/search.ts b/src/Website/src/pages/api/beers/search.ts similarity index 100% rename from Website/src/pages/api/beers/search.ts rename to src/Website/src/pages/api/beers/search.ts diff --git a/Website/src/pages/api/beers/styles/[postId]/beers/index.ts b/src/Website/src/pages/api/beers/styles/[postId]/beers/index.ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/beers/index.ts rename to src/Website/src/pages/api/beers/styles/[postId]/beers/index.ts diff --git a/Website/src/pages/api/beers/styles/[postId]/comments/[commentId].ts b/src/Website/src/pages/api/beers/styles/[postId]/comments/[commentId].ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/comments/[commentId].ts rename to src/Website/src/pages/api/beers/styles/[postId]/comments/[commentId].ts diff --git a/Website/src/pages/api/beers/styles/[postId]/comments/index.ts b/src/Website/src/pages/api/beers/styles/[postId]/comments/index.ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/comments/index.ts rename to src/Website/src/pages/api/beers/styles/[postId]/comments/index.ts diff --git a/Website/src/pages/api/beers/styles/[postId]/index.ts b/src/Website/src/pages/api/beers/styles/[postId]/index.ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/index.ts rename to src/Website/src/pages/api/beers/styles/[postId]/index.ts diff --git a/Website/src/pages/api/beers/styles/[postId]/like/index.ts b/src/Website/src/pages/api/beers/styles/[postId]/like/index.ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/like/index.ts rename to src/Website/src/pages/api/beers/styles/[postId]/like/index.ts diff --git a/Website/src/pages/api/beers/styles/[postId]/like/is-liked.ts b/src/Website/src/pages/api/beers/styles/[postId]/like/is-liked.ts similarity index 100% rename from Website/src/pages/api/beers/styles/[postId]/like/is-liked.ts rename to src/Website/src/pages/api/beers/styles/[postId]/like/is-liked.ts diff --git a/Website/src/pages/api/beers/styles/create.ts b/src/Website/src/pages/api/beers/styles/create.ts similarity index 100% rename from Website/src/pages/api/beers/styles/create.ts rename to src/Website/src/pages/api/beers/styles/create.ts diff --git a/Website/src/pages/api/beers/styles/index.ts b/src/Website/src/pages/api/beers/styles/index.ts similarity index 100% rename from Website/src/pages/api/beers/styles/index.ts rename to src/Website/src/pages/api/beers/styles/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/beers/index.ts b/src/Website/src/pages/api/breweries/[postId]/beers/index.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/beers/index.ts rename to src/Website/src/pages/api/breweries/[postId]/beers/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/comments/[commentId].ts b/src/Website/src/pages/api/breweries/[postId]/comments/[commentId].ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/comments/[commentId].ts rename to src/Website/src/pages/api/breweries/[postId]/comments/[commentId].ts diff --git a/Website/src/pages/api/breweries/[postId]/comments/index.ts b/src/Website/src/pages/api/breweries/[postId]/comments/index.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/comments/index.ts rename to src/Website/src/pages/api/breweries/[postId]/comments/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/images/index.ts b/src/Website/src/pages/api/breweries/[postId]/images/index.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/images/index.ts rename to src/Website/src/pages/api/breweries/[postId]/images/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/index.ts b/src/Website/src/pages/api/breweries/[postId]/index.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/index.ts rename to src/Website/src/pages/api/breweries/[postId]/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/like/index.ts b/src/Website/src/pages/api/breweries/[postId]/like/index.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/like/index.ts rename to src/Website/src/pages/api/breweries/[postId]/like/index.ts diff --git a/Website/src/pages/api/breweries/[postId]/like/is-liked.ts b/src/Website/src/pages/api/breweries/[postId]/like/is-liked.ts similarity index 100% rename from Website/src/pages/api/breweries/[postId]/like/is-liked.ts rename to src/Website/src/pages/api/breweries/[postId]/like/is-liked.ts diff --git a/Website/src/pages/api/breweries/create.ts b/src/Website/src/pages/api/breweries/create.ts similarity index 100% rename from Website/src/pages/api/breweries/create.ts rename to src/Website/src/pages/api/breweries/create.ts diff --git a/Website/src/pages/api/breweries/index.ts b/src/Website/src/pages/api/breweries/index.ts similarity index 100% rename from Website/src/pages/api/breweries/index.ts rename to src/Website/src/pages/api/breweries/index.ts diff --git a/Website/src/pages/api/breweries/map/index.ts b/src/Website/src/pages/api/breweries/map/index.ts similarity index 100% rename from Website/src/pages/api/breweries/map/index.ts rename to src/Website/src/pages/api/breweries/map/index.ts diff --git a/Website/src/pages/api/users/[id]/follow-user.ts b/src/Website/src/pages/api/users/[id]/follow-user.ts similarity index 100% rename from Website/src/pages/api/users/[id]/follow-user.ts rename to src/Website/src/pages/api/users/[id]/follow-user.ts diff --git a/Website/src/pages/api/users/[id]/followers.ts b/src/Website/src/pages/api/users/[id]/followers.ts similarity index 100% rename from Website/src/pages/api/users/[id]/followers.ts rename to src/Website/src/pages/api/users/[id]/followers.ts diff --git a/Website/src/pages/api/users/[id]/following.ts b/src/Website/src/pages/api/users/[id]/following.ts similarity index 100% rename from Website/src/pages/api/users/[id]/following.ts rename to src/Website/src/pages/api/users/[id]/following.ts diff --git a/Website/src/pages/api/users/[id]/index.ts b/src/Website/src/pages/api/users/[id]/index.ts similarity index 100% rename from Website/src/pages/api/users/[id]/index.ts rename to src/Website/src/pages/api/users/[id]/index.ts diff --git a/Website/src/pages/api/users/[id]/is-followed.ts b/src/Website/src/pages/api/users/[id]/is-followed.ts similarity index 100% rename from Website/src/pages/api/users/[id]/is-followed.ts rename to src/Website/src/pages/api/users/[id]/is-followed.ts diff --git a/Website/src/pages/api/users/[id]/posts/beers.ts b/src/Website/src/pages/api/users/[id]/posts/beers.ts similarity index 100% rename from Website/src/pages/api/users/[id]/posts/beers.ts rename to src/Website/src/pages/api/users/[id]/posts/beers.ts diff --git a/Website/src/pages/api/users/[id]/posts/breweries.ts b/src/Website/src/pages/api/users/[id]/posts/breweries.ts similarity index 100% rename from Website/src/pages/api/users/[id]/posts/breweries.ts rename to src/Website/src/pages/api/users/[id]/posts/breweries.ts diff --git a/Website/src/pages/api/users/[id]/profile/update-avatar.ts b/src/Website/src/pages/api/users/[id]/profile/update-avatar.ts similarity index 100% rename from Website/src/pages/api/users/[id]/profile/update-avatar.ts rename to src/Website/src/pages/api/users/[id]/profile/update-avatar.ts diff --git a/Website/src/pages/api/users/[id]/profile/update-profile.ts b/src/Website/src/pages/api/users/[id]/profile/update-profile.ts similarity index 100% rename from Website/src/pages/api/users/[id]/profile/update-profile.ts rename to src/Website/src/pages/api/users/[id]/profile/update-profile.ts diff --git a/Website/src/pages/api/users/check-email.ts b/src/Website/src/pages/api/users/check-email.ts similarity index 100% rename from Website/src/pages/api/users/check-email.ts rename to src/Website/src/pages/api/users/check-email.ts diff --git a/Website/src/pages/api/users/check-username.ts b/src/Website/src/pages/api/users/check-username.ts similarity index 100% rename from Website/src/pages/api/users/check-username.ts rename to src/Website/src/pages/api/users/check-username.ts diff --git a/Website/src/pages/api/users/confirm.ts b/src/Website/src/pages/api/users/confirm.ts similarity index 100% rename from Website/src/pages/api/users/confirm.ts rename to src/Website/src/pages/api/users/confirm.ts diff --git a/Website/src/pages/api/users/current.ts b/src/Website/src/pages/api/users/current.ts similarity index 100% rename from Website/src/pages/api/users/current.ts rename to src/Website/src/pages/api/users/current.ts diff --git a/Website/src/pages/api/users/edit-password.ts b/src/Website/src/pages/api/users/edit-password.ts similarity index 100% rename from Website/src/pages/api/users/edit-password.ts rename to src/Website/src/pages/api/users/edit-password.ts diff --git a/Website/src/pages/api/users/forgot-password.ts b/src/Website/src/pages/api/users/forgot-password.ts similarity index 100% rename from Website/src/pages/api/users/forgot-password.ts rename to src/Website/src/pages/api/users/forgot-password.ts diff --git a/Website/src/pages/api/users/login.ts b/src/Website/src/pages/api/users/login.ts similarity index 100% rename from Website/src/pages/api/users/login.ts rename to src/Website/src/pages/api/users/login.ts diff --git a/Website/src/pages/api/users/logout.ts b/src/Website/src/pages/api/users/logout.ts similarity index 100% rename from Website/src/pages/api/users/logout.ts rename to src/Website/src/pages/api/users/logout.ts diff --git a/Website/src/pages/api/users/register.ts b/src/Website/src/pages/api/users/register.ts similarity index 100% rename from Website/src/pages/api/users/register.ts rename to src/Website/src/pages/api/users/register.ts diff --git a/Website/src/pages/api/users/resend-confirmation.ts b/src/Website/src/pages/api/users/resend-confirmation.ts similarity index 100% rename from Website/src/pages/api/users/resend-confirmation.ts rename to src/Website/src/pages/api/users/resend-confirmation.ts diff --git a/Website/src/pages/beers/[id]/edit.tsx b/src/Website/src/pages/beers/[id]/edit.tsx similarity index 100% rename from Website/src/pages/beers/[id]/edit.tsx rename to src/Website/src/pages/beers/[id]/edit.tsx diff --git a/Website/src/pages/beers/[id]/index.tsx b/src/Website/src/pages/beers/[id]/index.tsx similarity index 100% rename from Website/src/pages/beers/[id]/index.tsx rename to src/Website/src/pages/beers/[id]/index.tsx diff --git a/Website/src/pages/beers/index.tsx b/src/Website/src/pages/beers/index.tsx similarity index 100% rename from Website/src/pages/beers/index.tsx rename to src/Website/src/pages/beers/index.tsx diff --git a/Website/src/pages/beers/search.tsx b/src/Website/src/pages/beers/search.tsx similarity index 100% rename from Website/src/pages/beers/search.tsx rename to src/Website/src/pages/beers/search.tsx diff --git a/Website/src/pages/beers/styles/[id]/index.tsx b/src/Website/src/pages/beers/styles/[id]/index.tsx similarity index 100% rename from Website/src/pages/beers/styles/[id]/index.tsx rename to src/Website/src/pages/beers/styles/[id]/index.tsx diff --git a/Website/src/pages/beers/styles/index.tsx b/src/Website/src/pages/beers/styles/index.tsx similarity index 100% rename from Website/src/pages/beers/styles/index.tsx rename to src/Website/src/pages/beers/styles/index.tsx diff --git a/Website/src/pages/breweries/[id]/beers/create.tsx b/src/Website/src/pages/breweries/[id]/beers/create.tsx similarity index 100% rename from Website/src/pages/breweries/[id]/beers/create.tsx rename to src/Website/src/pages/breweries/[id]/beers/create.tsx diff --git a/Website/src/pages/breweries/[id]/edit.tsx b/src/Website/src/pages/breweries/[id]/edit.tsx similarity index 100% rename from Website/src/pages/breweries/[id]/edit.tsx rename to src/Website/src/pages/breweries/[id]/edit.tsx diff --git a/Website/src/pages/breweries/[id]/index.tsx b/src/Website/src/pages/breweries/[id]/index.tsx similarity index 100% rename from Website/src/pages/breweries/[id]/index.tsx rename to src/Website/src/pages/breweries/[id]/index.tsx diff --git a/Website/src/pages/breweries/create.tsx b/src/Website/src/pages/breweries/create.tsx similarity index 100% rename from Website/src/pages/breweries/create.tsx rename to src/Website/src/pages/breweries/create.tsx diff --git a/Website/src/pages/breweries/index.tsx b/src/Website/src/pages/breweries/index.tsx similarity index 100% rename from Website/src/pages/breweries/index.tsx rename to src/Website/src/pages/breweries/index.tsx diff --git a/Website/src/pages/breweries/map.tsx b/src/Website/src/pages/breweries/map.tsx similarity index 100% rename from Website/src/pages/breweries/map.tsx rename to src/Website/src/pages/breweries/map.tsx diff --git a/Website/src/pages/index.tsx b/src/Website/src/pages/index.tsx similarity index 100% rename from Website/src/pages/index.tsx rename to src/Website/src/pages/index.tsx diff --git a/Website/src/pages/login/index.tsx b/src/Website/src/pages/login/index.tsx similarity index 100% rename from Website/src/pages/login/index.tsx rename to src/Website/src/pages/login/index.tsx diff --git a/Website/src/pages/register/index.tsx b/src/Website/src/pages/register/index.tsx similarity index 100% rename from Website/src/pages/register/index.tsx rename to src/Website/src/pages/register/index.tsx diff --git a/Website/src/pages/users/[id].tsx b/src/Website/src/pages/users/[id].tsx similarity index 100% rename from Website/src/pages/users/[id].tsx rename to src/Website/src/pages/users/[id].tsx diff --git a/Website/src/pages/users/account/edit-profile.tsx b/src/Website/src/pages/users/account/edit-profile.tsx similarity index 100% rename from Website/src/pages/users/account/edit-profile.tsx rename to src/Website/src/pages/users/account/edit-profile.tsx diff --git a/Website/src/pages/users/account/index.tsx b/src/Website/src/pages/users/account/index.tsx similarity index 100% rename from Website/src/pages/users/account/index.tsx rename to src/Website/src/pages/users/account/index.tsx diff --git a/Website/src/pages/users/confirm.tsx b/src/Website/src/pages/users/confirm.tsx similarity index 100% rename from Website/src/pages/users/confirm.tsx rename to src/Website/src/pages/users/confirm.tsx diff --git a/Website/src/pages/users/current.tsx b/src/Website/src/pages/users/current.tsx similarity index 100% rename from Website/src/pages/users/current.tsx rename to src/Website/src/pages/users/current.tsx diff --git a/Website/src/pages/users/forgot-password.tsx b/src/Website/src/pages/users/forgot-password.tsx similarity index 100% rename from Website/src/pages/users/forgot-password.tsx rename to src/Website/src/pages/users/forgot-password.tsx diff --git a/Website/src/pages/users/reset-password.tsx b/src/Website/src/pages/users/reset-password.tsx similarity index 100% rename from Website/src/pages/users/reset-password.tsx rename to src/Website/src/pages/users/reset-password.tsx diff --git a/Website/src/prisma/DBClient.ts b/src/Website/src/prisma/DBClient.ts similarity index 100% rename from Website/src/prisma/DBClient.ts rename to src/Website/src/prisma/DBClient.ts diff --git a/Website/src/prisma/migrations/20230502225418_/migration.sql b/src/Website/src/prisma/migrations/20230502225418_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230502225418_/migration.sql rename to src/Website/src/prisma/migrations/20230502225418_/migration.sql diff --git a/Website/src/prisma/migrations/20230510010306_/migration.sql b/src/Website/src/prisma/migrations/20230510010306_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230510010306_/migration.sql rename to src/Website/src/prisma/migrations/20230510010306_/migration.sql diff --git a/Website/src/prisma/migrations/20230603010553_/migration.sql b/src/Website/src/prisma/migrations/20230603010553_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230603010553_/migration.sql rename to src/Website/src/prisma/migrations/20230603010553_/migration.sql diff --git a/Website/src/prisma/migrations/20230918194402_/migration.sql b/src/Website/src/prisma/migrations/20230918194402_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230918194402_/migration.sql rename to src/Website/src/prisma/migrations/20230918194402_/migration.sql diff --git a/Website/src/prisma/migrations/20230922054646_/migration.sql b/src/Website/src/prisma/migrations/20230922054646_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230922054646_/migration.sql rename to src/Website/src/prisma/migrations/20230922054646_/migration.sql diff --git a/Website/src/prisma/migrations/20230923043953_/migration.sql b/src/Website/src/prisma/migrations/20230923043953_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20230923043953_/migration.sql rename to src/Website/src/prisma/migrations/20230923043953_/migration.sql diff --git a/Website/src/prisma/migrations/20231009153905_/migration.sql b/src/Website/src/prisma/migrations/20231009153905_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20231009153905_/migration.sql rename to src/Website/src/prisma/migrations/20231009153905_/migration.sql diff --git a/Website/src/prisma/migrations/20231106024511_/migration.sql b/src/Website/src/prisma/migrations/20231106024511_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20231106024511_/migration.sql rename to src/Website/src/prisma/migrations/20231106024511_/migration.sql diff --git a/Website/src/prisma/migrations/20231112221155_/migration.sql b/src/Website/src/prisma/migrations/20231112221155_/migration.sql similarity index 100% rename from Website/src/prisma/migrations/20231112221155_/migration.sql rename to src/Website/src/prisma/migrations/20231112221155_/migration.sql diff --git a/Website/src/prisma/migrations/migration_lock.toml b/src/Website/src/prisma/migrations/migration_lock.toml similarity index 100% rename from Website/src/prisma/migrations/migration_lock.toml rename to src/Website/src/prisma/migrations/migration_lock.toml diff --git a/Website/src/prisma/schema.prisma b/src/Website/src/prisma/schema.prisma similarity index 100% rename from Website/src/prisma/schema.prisma rename to src/Website/src/prisma/schema.prisma diff --git a/Website/src/prisma/seed/clear/clearCloudinaryStorage.ts b/src/Website/src/prisma/seed/clear/clearCloudinaryStorage.ts similarity index 100% rename from Website/src/prisma/seed/clear/clearCloudinaryStorage.ts rename to src/Website/src/prisma/seed/clear/clearCloudinaryStorage.ts diff --git a/Website/src/prisma/seed/clear/clearDatabase.ts b/src/Website/src/prisma/seed/clear/clearDatabase.ts similarity index 100% rename from Website/src/prisma/seed/clear/clearDatabase.ts rename to src/Website/src/prisma/seed/clear/clearDatabase.ts diff --git a/Website/src/prisma/seed/clear/index.ts b/src/Website/src/prisma/seed/clear/index.ts similarity index 100% rename from Website/src/prisma/seed/clear/index.ts rename to src/Website/src/prisma/seed/clear/index.ts diff --git a/Website/src/prisma/seed/create/createAdminUser.ts b/src/Website/src/prisma/seed/create/createAdminUser.ts similarity index 100% rename from Website/src/prisma/seed/create/createAdminUser.ts rename to src/Website/src/prisma/seed/create/createAdminUser.ts diff --git a/Website/src/prisma/seed/create/createNewBeerImages.ts b/src/Website/src/prisma/seed/create/createNewBeerImages.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerImages.ts rename to src/Website/src/prisma/seed/create/createNewBeerImages.ts diff --git a/Website/src/prisma/seed/create/createNewBeerPostComments.ts b/src/Website/src/prisma/seed/create/createNewBeerPostComments.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerPostComments.ts rename to src/Website/src/prisma/seed/create/createNewBeerPostComments.ts diff --git a/Website/src/prisma/seed/create/createNewBeerPostLikes.ts b/src/Website/src/prisma/seed/create/createNewBeerPostLikes.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerPostLikes.ts rename to src/Website/src/prisma/seed/create/createNewBeerPostLikes.ts diff --git a/Website/src/prisma/seed/create/createNewBeerPosts.ts b/src/Website/src/prisma/seed/create/createNewBeerPosts.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerPosts.ts rename to src/Website/src/prisma/seed/create/createNewBeerPosts.ts diff --git a/Website/src/prisma/seed/create/createNewBeerStyleComments.ts b/src/Website/src/prisma/seed/create/createNewBeerStyleComments.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerStyleComments.ts rename to src/Website/src/prisma/seed/create/createNewBeerStyleComments.ts diff --git a/Website/src/prisma/seed/create/createNewBeerStyleLikes.ts b/src/Website/src/prisma/seed/create/createNewBeerStyleLikes.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerStyleLikes.ts rename to src/Website/src/prisma/seed/create/createNewBeerStyleLikes.ts diff --git a/Website/src/prisma/seed/create/createNewBeerStyles.ts b/src/Website/src/prisma/seed/create/createNewBeerStyles.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBeerStyles.ts rename to src/Website/src/prisma/seed/create/createNewBeerStyles.ts diff --git a/Website/src/prisma/seed/create/createNewBreweryImages.ts b/src/Website/src/prisma/seed/create/createNewBreweryImages.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBreweryImages.ts rename to src/Website/src/prisma/seed/create/createNewBreweryImages.ts diff --git a/Website/src/prisma/seed/create/createNewBreweryPostComments.ts b/src/Website/src/prisma/seed/create/createNewBreweryPostComments.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBreweryPostComments.ts rename to src/Website/src/prisma/seed/create/createNewBreweryPostComments.ts diff --git a/Website/src/prisma/seed/create/createNewBreweryPostLikes.ts b/src/Website/src/prisma/seed/create/createNewBreweryPostLikes.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBreweryPostLikes.ts rename to src/Website/src/prisma/seed/create/createNewBreweryPostLikes.ts diff --git a/Website/src/prisma/seed/create/createNewBreweryPosts.ts b/src/Website/src/prisma/seed/create/createNewBreweryPosts.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewBreweryPosts.ts rename to src/Website/src/prisma/seed/create/createNewBreweryPosts.ts diff --git a/Website/src/prisma/seed/create/createNewLocations.ts b/src/Website/src/prisma/seed/create/createNewLocations.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewLocations.ts rename to src/Website/src/prisma/seed/create/createNewLocations.ts diff --git a/Website/src/prisma/seed/create/createNewUserAvatars.ts b/src/Website/src/prisma/seed/create/createNewUserAvatars.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewUserAvatars.ts rename to src/Website/src/prisma/seed/create/createNewUserAvatars.ts diff --git a/Website/src/prisma/seed/create/createNewUserFollows.ts b/src/Website/src/prisma/seed/create/createNewUserFollows.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewUserFollows.ts rename to src/Website/src/prisma/seed/create/createNewUserFollows.ts diff --git a/Website/src/prisma/seed/create/createNewUsers.ts b/src/Website/src/prisma/seed/create/createNewUsers.ts similarity index 100% rename from Website/src/prisma/seed/create/createNewUsers.ts rename to src/Website/src/prisma/seed/create/createNewUsers.ts diff --git a/Website/src/prisma/seed/index.ts b/src/Website/src/prisma/seed/index.ts similarity index 100% rename from Website/src/prisma/seed/index.ts rename to src/Website/src/prisma/seed/index.ts diff --git a/Website/src/prisma/seed/util/beerStyles.ts b/src/Website/src/prisma/seed/util/beerStyles.ts similarity index 100% rename from Website/src/prisma/seed/util/beerStyles.ts rename to src/Website/src/prisma/seed/util/beerStyles.ts diff --git a/Website/src/prisma/seed/util/canadianCities.ts b/src/Website/src/prisma/seed/util/canadianCities.ts similarity index 100% rename from Website/src/prisma/seed/util/canadianCities.ts rename to src/Website/src/prisma/seed/util/canadianCities.ts diff --git a/Website/src/prisma/seed/util/imageUrls.ts b/src/Website/src/prisma/seed/util/imageUrls.ts similarity index 100% rename from Website/src/prisma/seed/util/imageUrls.ts rename to src/Website/src/prisma/seed/util/imageUrls.ts diff --git a/Website/src/reducers/accountPageReducer.ts b/src/Website/src/reducers/accountPageReducer.ts similarity index 100% rename from Website/src/reducers/accountPageReducer.ts rename to src/Website/src/reducers/accountPageReducer.ts diff --git a/Website/src/requests/comments/beer-comment/index.ts b/src/Website/src/requests/comments/beer-comment/index.ts similarity index 100% rename from Website/src/requests/comments/beer-comment/index.ts rename to src/Website/src/requests/comments/beer-comment/index.ts diff --git a/Website/src/requests/comments/beer-comment/types/index.ts b/src/Website/src/requests/comments/beer-comment/types/index.ts similarity index 100% rename from Website/src/requests/comments/beer-comment/types/index.ts rename to src/Website/src/requests/comments/beer-comment/types/index.ts diff --git a/Website/src/requests/comments/beer-style-comment/index.ts b/src/Website/src/requests/comments/beer-style-comment/index.ts similarity index 100% rename from Website/src/requests/comments/beer-style-comment/index.ts rename to src/Website/src/requests/comments/beer-style-comment/index.ts diff --git a/Website/src/requests/comments/beer-style-comment/types/index.ts b/src/Website/src/requests/comments/beer-style-comment/types/index.ts similarity index 100% rename from Website/src/requests/comments/beer-style-comment/types/index.ts rename to src/Website/src/requests/comments/beer-style-comment/types/index.ts diff --git a/Website/src/requests/comments/brewery-comment/index.ts b/src/Website/src/requests/comments/brewery-comment/index.ts similarity index 100% rename from Website/src/requests/comments/brewery-comment/index.ts rename to src/Website/src/requests/comments/brewery-comment/index.ts diff --git a/Website/src/requests/comments/brewery-comment/sendCreateBreweryCommentRequest.ts b/src/Website/src/requests/comments/brewery-comment/sendCreateBreweryCommentRequest.ts similarity index 100% rename from Website/src/requests/comments/brewery-comment/sendCreateBreweryCommentRequest.ts rename to src/Website/src/requests/comments/brewery-comment/sendCreateBreweryCommentRequest.ts diff --git a/Website/src/requests/comments/brewery-comment/types/index.ts b/src/Website/src/requests/comments/brewery-comment/types/index.ts similarity index 100% rename from Website/src/requests/comments/brewery-comment/types/index.ts rename to src/Website/src/requests/comments/brewery-comment/types/index.ts diff --git a/Website/src/requests/images/beer-image/sendUploadBeerImageRequest.ts b/src/Website/src/requests/images/beer-image/sendUploadBeerImageRequest.ts similarity index 100% rename from Website/src/requests/images/beer-image/sendUploadBeerImageRequest.ts rename to src/Website/src/requests/images/beer-image/sendUploadBeerImageRequest.ts diff --git a/Website/src/requests/images/brewery-image/sendUploadBreweryImageRequest.ts b/src/Website/src/requests/images/brewery-image/sendUploadBreweryImageRequest.ts similarity index 100% rename from Website/src/requests/images/brewery-image/sendUploadBreweryImageRequest.ts rename to src/Website/src/requests/images/brewery-image/sendUploadBreweryImageRequest.ts diff --git a/Website/src/requests/likes/beer-post-like/sendBeerPostLikeRequest.ts b/src/Website/src/requests/likes/beer-post-like/sendBeerPostLikeRequest.ts similarity index 100% rename from Website/src/requests/likes/beer-post-like/sendBeerPostLikeRequest.ts rename to src/Website/src/requests/likes/beer-post-like/sendBeerPostLikeRequest.ts diff --git a/Website/src/requests/likes/beer-style-like/sendBeerStyleLikeRequest.ts b/src/Website/src/requests/likes/beer-style-like/sendBeerStyleLikeRequest.ts similarity index 100% rename from Website/src/requests/likes/beer-style-like/sendBeerStyleLikeRequest.ts rename to src/Website/src/requests/likes/beer-style-like/sendBeerStyleLikeRequest.ts diff --git a/Website/src/requests/likes/brewery-post-like/sendBreweryPostLikeRequest.ts b/src/Website/src/requests/likes/brewery-post-like/sendBreweryPostLikeRequest.ts similarity index 100% rename from Website/src/requests/likes/brewery-post-like/sendBreweryPostLikeRequest.ts rename to src/Website/src/requests/likes/brewery-post-like/sendBreweryPostLikeRequest.ts diff --git a/Website/src/requests/posts/beer-post/index.ts b/src/Website/src/requests/posts/beer-post/index.ts similarity index 100% rename from Website/src/requests/posts/beer-post/index.ts rename to src/Website/src/requests/posts/beer-post/index.ts diff --git a/Website/src/requests/posts/beer-post/types/index.ts b/src/Website/src/requests/posts/beer-post/types/index.ts similarity index 100% rename from Website/src/requests/posts/beer-post/types/index.ts rename to src/Website/src/requests/posts/beer-post/types/index.ts diff --git a/Website/src/requests/posts/brewery-post/index.ts b/src/Website/src/requests/posts/brewery-post/index.ts similarity index 100% rename from Website/src/requests/posts/brewery-post/index.ts rename to src/Website/src/requests/posts/brewery-post/index.ts diff --git a/Website/src/requests/posts/brewery-post/types/index.ts b/src/Website/src/requests/posts/brewery-post/types/index.ts similarity index 100% rename from Website/src/requests/posts/brewery-post/types/index.ts rename to src/Website/src/requests/posts/brewery-post/types/index.ts diff --git a/Website/src/requests/users/auth/index.ts b/src/Website/src/requests/users/auth/index.ts similarity index 100% rename from Website/src/requests/users/auth/index.ts rename to src/Website/src/requests/users/auth/index.ts diff --git a/Website/src/requests/users/auth/types/index.ts b/src/Website/src/requests/users/auth/types/index.ts similarity index 100% rename from Website/src/requests/users/auth/types/index.ts rename to src/Website/src/requests/users/auth/types/index.ts diff --git a/Website/src/requests/users/profile/sendUpdateUserAvatarRequest.ts b/src/Website/src/requests/users/profile/sendUpdateUserAvatarRequest.ts similarity index 100% rename from Website/src/requests/users/profile/sendUpdateUserAvatarRequest.ts rename to src/Website/src/requests/users/profile/sendUpdateUserAvatarRequest.ts diff --git a/Website/src/requests/users/profile/sendUpdateUserProfileRequest.ts b/src/Website/src/requests/users/profile/sendUpdateUserProfileRequest.ts similarity index 100% rename from Website/src/requests/users/profile/sendUpdateUserProfileRequest.ts rename to src/Website/src/requests/users/profile/sendUpdateUserProfileRequest.ts diff --git a/Website/src/requests/users/profile/validateUsernameRequest.ts b/src/Website/src/requests/users/profile/validateUsernameRequest.ts similarity index 100% rename from Website/src/requests/users/profile/validateUsernameRequest.ts rename to src/Website/src/requests/users/profile/validateUsernameRequest.ts diff --git a/Website/src/services/comments/beer-comment/index.ts b/src/Website/src/services/comments/beer-comment/index.ts similarity index 100% rename from Website/src/services/comments/beer-comment/index.ts rename to src/Website/src/services/comments/beer-comment/index.ts diff --git a/Website/src/services/comments/beer-comment/types/index.ts b/src/Website/src/services/comments/beer-comment/types/index.ts similarity index 100% rename from Website/src/services/comments/beer-comment/types/index.ts rename to src/Website/src/services/comments/beer-comment/types/index.ts diff --git a/Website/src/services/comments/beer-style-comment/index.ts b/src/Website/src/services/comments/beer-style-comment/index.ts similarity index 100% rename from Website/src/services/comments/beer-style-comment/index.ts rename to src/Website/src/services/comments/beer-style-comment/index.ts diff --git a/Website/src/services/comments/beer-style-comment/types/index.ts b/src/Website/src/services/comments/beer-style-comment/types/index.ts similarity index 100% rename from Website/src/services/comments/beer-style-comment/types/index.ts rename to src/Website/src/services/comments/beer-style-comment/types/index.ts diff --git a/Website/src/services/comments/brewery-comment/index.ts b/src/Website/src/services/comments/brewery-comment/index.ts similarity index 100% rename from Website/src/services/comments/brewery-comment/index.ts rename to src/Website/src/services/comments/brewery-comment/index.ts diff --git a/Website/src/services/comments/brewery-comment/types/index.ts b/src/Website/src/services/comments/brewery-comment/types/index.ts similarity index 100% rename from Website/src/services/comments/brewery-comment/types/index.ts rename to src/Website/src/services/comments/brewery-comment/types/index.ts diff --git a/Website/src/services/images/beer-image/index.ts b/src/Website/src/services/images/beer-image/index.ts similarity index 100% rename from Website/src/services/images/beer-image/index.ts rename to src/Website/src/services/images/beer-image/index.ts diff --git a/Website/src/services/images/beer-image/types/index.ts b/src/Website/src/services/images/beer-image/types/index.ts similarity index 100% rename from Website/src/services/images/beer-image/types/index.ts rename to src/Website/src/services/images/beer-image/types/index.ts diff --git a/Website/src/services/images/brewery-image/index.ts b/src/Website/src/services/images/brewery-image/index.ts similarity index 100% rename from Website/src/services/images/brewery-image/index.ts rename to src/Website/src/services/images/brewery-image/index.ts diff --git a/Website/src/services/images/brewery-image/types/index.ts b/src/Website/src/services/images/brewery-image/types/index.ts similarity index 100% rename from Website/src/services/images/brewery-image/types/index.ts rename to src/Website/src/services/images/brewery-image/types/index.ts diff --git a/Website/src/services/likes/beer-post-like/index.ts b/src/Website/src/services/likes/beer-post-like/index.ts similarity index 100% rename from Website/src/services/likes/beer-post-like/index.ts rename to src/Website/src/services/likes/beer-post-like/index.ts diff --git a/Website/src/services/likes/beer-post-like/schema/BeerPostLikeSchema.ts b/src/Website/src/services/likes/beer-post-like/schema/BeerPostLikeSchema.ts similarity index 100% rename from Website/src/services/likes/beer-post-like/schema/BeerPostLikeSchema.ts rename to src/Website/src/services/likes/beer-post-like/schema/BeerPostLikeSchema.ts diff --git a/Website/src/services/likes/beer-post-like/types/index.ts b/src/Website/src/services/likes/beer-post-like/types/index.ts similarity index 100% rename from Website/src/services/likes/beer-post-like/types/index.ts rename to src/Website/src/services/likes/beer-post-like/types/index.ts diff --git a/Website/src/services/likes/beer-style-like/index.ts b/src/Website/src/services/likes/beer-style-like/index.ts similarity index 100% rename from Website/src/services/likes/beer-style-like/index.ts rename to src/Website/src/services/likes/beer-style-like/index.ts diff --git a/Website/src/services/likes/beer-style-like/schema/BeerStyleLikeSchema.ts b/src/Website/src/services/likes/beer-style-like/schema/BeerStyleLikeSchema.ts similarity index 100% rename from Website/src/services/likes/beer-style-like/schema/BeerStyleLikeSchema.ts rename to src/Website/src/services/likes/beer-style-like/schema/BeerStyleLikeSchema.ts diff --git a/Website/src/services/likes/beer-style-like/types/index.ts b/src/Website/src/services/likes/beer-style-like/types/index.ts similarity index 100% rename from Website/src/services/likes/beer-style-like/types/index.ts rename to src/Website/src/services/likes/beer-style-like/types/index.ts diff --git a/Website/src/services/likes/brewery-post-like/index.ts b/src/Website/src/services/likes/brewery-post-like/index.ts similarity index 100% rename from Website/src/services/likes/brewery-post-like/index.ts rename to src/Website/src/services/likes/brewery-post-like/index.ts diff --git a/Website/src/services/likes/brewery-post-like/schema/BreweryPostLikeSchema.ts b/src/Website/src/services/likes/brewery-post-like/schema/BreweryPostLikeSchema.ts similarity index 100% rename from Website/src/services/likes/brewery-post-like/schema/BreweryPostLikeSchema.ts rename to src/Website/src/services/likes/brewery-post-like/schema/BreweryPostLikeSchema.ts diff --git a/Website/src/services/likes/brewery-post-like/types/index.ts b/src/Website/src/services/likes/brewery-post-like/types/index.ts similarity index 100% rename from Website/src/services/likes/brewery-post-like/types/index.ts rename to src/Website/src/services/likes/brewery-post-like/types/index.ts diff --git a/Website/src/services/posts/beer-post/index.ts b/src/Website/src/services/posts/beer-post/index.ts similarity index 100% rename from Website/src/services/posts/beer-post/index.ts rename to src/Website/src/services/posts/beer-post/index.ts diff --git a/Website/src/services/posts/beer-post/schema/BeerPostQueryResult.ts b/src/Website/src/services/posts/beer-post/schema/BeerPostQueryResult.ts similarity index 100% rename from Website/src/services/posts/beer-post/schema/BeerPostQueryResult.ts rename to src/Website/src/services/posts/beer-post/schema/BeerPostQueryResult.ts diff --git a/Website/src/services/posts/beer-post/schema/CreateBeerPostValidationSchema.ts b/src/Website/src/services/posts/beer-post/schema/CreateBeerPostValidationSchema.ts similarity index 100% rename from Website/src/services/posts/beer-post/schema/CreateBeerPostValidationSchema.ts rename to src/Website/src/services/posts/beer-post/schema/CreateBeerPostValidationSchema.ts diff --git a/Website/src/services/posts/beer-post/schema/EditBeerPostValidationSchema.ts b/src/Website/src/services/posts/beer-post/schema/EditBeerPostValidationSchema.ts similarity index 100% rename from Website/src/services/posts/beer-post/schema/EditBeerPostValidationSchema.ts rename to src/Website/src/services/posts/beer-post/schema/EditBeerPostValidationSchema.ts diff --git a/Website/src/services/posts/beer-post/types/index.ts b/src/Website/src/services/posts/beer-post/types/index.ts similarity index 100% rename from Website/src/services/posts/beer-post/types/index.ts rename to src/Website/src/services/posts/beer-post/types/index.ts diff --git a/Website/src/services/posts/beer-style-post/index.ts b/src/Website/src/services/posts/beer-style-post/index.ts similarity index 100% rename from Website/src/services/posts/beer-style-post/index.ts rename to src/Website/src/services/posts/beer-style-post/index.ts diff --git a/Website/src/services/posts/beer-style-post/schema/BeerStyleQueryResult.ts b/src/Website/src/services/posts/beer-style-post/schema/BeerStyleQueryResult.ts similarity index 100% rename from Website/src/services/posts/beer-style-post/schema/BeerStyleQueryResult.ts rename to src/Website/src/services/posts/beer-style-post/schema/BeerStyleQueryResult.ts diff --git a/Website/src/services/posts/beer-style-post/schema/CreateBeerStyleValidationSchema.ts b/src/Website/src/services/posts/beer-style-post/schema/CreateBeerStyleValidationSchema.ts similarity index 100% rename from Website/src/services/posts/beer-style-post/schema/CreateBeerStyleValidationSchema.ts rename to src/Website/src/services/posts/beer-style-post/schema/CreateBeerStyleValidationSchema.ts diff --git a/Website/src/services/posts/beer-style-post/types/index.ts b/src/Website/src/services/posts/beer-style-post/types/index.ts similarity index 100% rename from Website/src/services/posts/beer-style-post/types/index.ts rename to src/Website/src/services/posts/beer-style-post/types/index.ts diff --git a/Website/src/services/posts/brewery-post/index.ts b/src/Website/src/services/posts/brewery-post/index.ts similarity index 100% rename from Website/src/services/posts/brewery-post/index.ts rename to src/Website/src/services/posts/brewery-post/index.ts diff --git a/Website/src/services/posts/brewery-post/schema/BreweryPostMapQueryResult.ts b/src/Website/src/services/posts/brewery-post/schema/BreweryPostMapQueryResult.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/BreweryPostMapQueryResult.ts rename to src/Website/src/services/posts/brewery-post/schema/BreweryPostMapQueryResult.ts diff --git a/Website/src/services/posts/brewery-post/schema/BreweryPostQueryResult.ts b/src/Website/src/services/posts/brewery-post/schema/BreweryPostQueryResult.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/BreweryPostQueryResult.ts rename to src/Website/src/services/posts/brewery-post/schema/BreweryPostQueryResult.ts diff --git a/Website/src/services/posts/brewery-post/schema/CreateBreweryPostSchema.ts b/src/Website/src/services/posts/brewery-post/schema/CreateBreweryPostSchema.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/CreateBreweryPostSchema.ts rename to src/Website/src/services/posts/brewery-post/schema/CreateBreweryPostSchema.ts diff --git a/Website/src/services/posts/brewery-post/schema/CreateNewBreweryPostWithoutLocationSchema.ts b/src/Website/src/services/posts/brewery-post/schema/CreateNewBreweryPostWithoutLocationSchema.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/CreateNewBreweryPostWithoutLocationSchema.ts rename to src/Website/src/services/posts/brewery-post/schema/CreateNewBreweryPostWithoutLocationSchema.ts diff --git a/Website/src/services/posts/brewery-post/schema/EditBreweryPostValidationSchema.ts b/src/Website/src/services/posts/brewery-post/schema/EditBreweryPostValidationSchema.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/EditBreweryPostValidationSchema.ts rename to src/Website/src/services/posts/brewery-post/schema/EditBreweryPostValidationSchema.ts diff --git a/Website/src/services/posts/brewery-post/schema/GetMapBreweryPostsSchema.ts b/src/Website/src/services/posts/brewery-post/schema/GetMapBreweryPostsSchema.ts similarity index 100% rename from Website/src/services/posts/brewery-post/schema/GetMapBreweryPostsSchema.ts rename to src/Website/src/services/posts/brewery-post/schema/GetMapBreweryPostsSchema.ts diff --git a/Website/src/services/posts/brewery-post/types/index.ts b/src/Website/src/services/posts/brewery-post/types/index.ts similarity index 100% rename from Website/src/services/posts/brewery-post/types/index.ts rename to src/Website/src/services/posts/brewery-post/types/index.ts diff --git a/Website/src/services/schema/CommentSchema/CommentQueryResult.ts b/src/Website/src/services/schema/CommentSchema/CommentQueryResult.ts similarity index 100% rename from Website/src/services/schema/CommentSchema/CommentQueryResult.ts rename to src/Website/src/services/schema/CommentSchema/CommentQueryResult.ts diff --git a/Website/src/services/schema/CommentSchema/CreateCommentValidationSchema.ts b/src/Website/src/services/schema/CommentSchema/CreateCommentValidationSchema.ts similarity index 100% rename from Website/src/services/schema/CommentSchema/CreateCommentValidationSchema.ts rename to src/Website/src/services/schema/CommentSchema/CreateCommentValidationSchema.ts diff --git a/Website/src/services/schema/ImageSchema/ImageMetadataValidationSchema.ts b/src/Website/src/services/schema/ImageSchema/ImageMetadataValidationSchema.ts similarity index 100% rename from Website/src/services/schema/ImageSchema/ImageMetadataValidationSchema.ts rename to src/Website/src/services/schema/ImageSchema/ImageMetadataValidationSchema.ts diff --git a/Website/src/services/schema/ImageSchema/ImageQueryValidationSchema.ts b/src/Website/src/services/schema/ImageSchema/ImageQueryValidationSchema.ts similarity index 100% rename from Website/src/services/schema/ImageSchema/ImageQueryValidationSchema.ts rename to src/Website/src/services/schema/ImageSchema/ImageQueryValidationSchema.ts diff --git a/Website/src/services/schema/ImageSchema/UploadImageValidationSchema.ts b/src/Website/src/services/schema/ImageSchema/UploadImageValidationSchema.ts similarity index 100% rename from Website/src/services/schema/ImageSchema/UploadImageValidationSchema.ts rename to src/Website/src/services/schema/ImageSchema/UploadImageValidationSchema.ts diff --git a/Website/src/services/schema/PaginatedQueryResponseSchema.ts b/src/Website/src/services/schema/PaginatedQueryResponseSchema.ts similarity index 100% rename from Website/src/services/schema/PaginatedQueryResponseSchema.ts rename to src/Website/src/services/schema/PaginatedQueryResponseSchema.ts diff --git a/Website/src/services/users/auth/index.ts b/src/Website/src/services/users/auth/index.ts similarity index 100% rename from Website/src/services/users/auth/index.ts rename to src/Website/src/services/users/auth/index.ts diff --git a/Website/src/services/users/auth/schema/CreateUserValidationSchemas.ts b/src/Website/src/services/users/auth/schema/CreateUserValidationSchemas.ts similarity index 100% rename from Website/src/services/users/auth/schema/CreateUserValidationSchemas.ts rename to src/Website/src/services/users/auth/schema/CreateUserValidationSchemas.ts diff --git a/Website/src/services/users/auth/schema/EditUserSchema.ts b/src/Website/src/services/users/auth/schema/EditUserSchema.ts similarity index 100% rename from Website/src/services/users/auth/schema/EditUserSchema.ts rename to src/Website/src/services/users/auth/schema/EditUserSchema.ts diff --git a/Website/src/services/users/auth/schema/GetUserSchema.ts b/src/Website/src/services/users/auth/schema/GetUserSchema.ts similarity index 100% rename from Website/src/services/users/auth/schema/GetUserSchema.ts rename to src/Website/src/services/users/auth/schema/GetUserSchema.ts diff --git a/Website/src/services/users/auth/schema/LoginValidationSchema.ts b/src/Website/src/services/users/auth/schema/LoginValidationSchema.ts similarity index 100% rename from Website/src/services/users/auth/schema/LoginValidationSchema.ts rename to src/Website/src/services/users/auth/schema/LoginValidationSchema.ts diff --git a/Website/src/services/users/auth/schema/TokenValidationSchema.ts b/src/Website/src/services/users/auth/schema/TokenValidationSchema.ts similarity index 100% rename from Website/src/services/users/auth/schema/TokenValidationSchema.ts rename to src/Website/src/services/users/auth/schema/TokenValidationSchema.ts diff --git a/Website/src/services/users/auth/schema/UpdateProfileSchema.ts b/src/Website/src/services/users/auth/schema/UpdateProfileSchema.ts similarity index 100% rename from Website/src/services/users/auth/schema/UpdateProfileSchema.ts rename to src/Website/src/services/users/auth/schema/UpdateProfileSchema.ts diff --git a/Website/src/services/users/auth/types/index.ts b/src/Website/src/services/users/auth/types/index.ts similarity index 100% rename from Website/src/services/users/auth/types/index.ts rename to src/Website/src/services/users/auth/types/index.ts diff --git a/Website/src/services/users/profile/index.ts b/src/Website/src/services/users/profile/index.ts similarity index 100% rename from Website/src/services/users/profile/index.ts rename to src/Website/src/services/users/profile/index.ts diff --git a/Website/src/services/users/profile/schema/FollowInfoSchema.ts b/src/Website/src/services/users/profile/schema/FollowInfoSchema.ts similarity index 100% rename from Website/src/services/users/profile/schema/FollowInfoSchema.ts rename to src/Website/src/services/users/profile/schema/FollowInfoSchema.ts diff --git a/Website/src/services/users/profile/types/index.ts b/src/Website/src/services/users/profile/types/index.ts similarity index 100% rename from Website/src/services/users/profile/types/index.ts rename to src/Website/src/services/users/profile/types/index.ts diff --git a/Website/src/styles/globals.css b/src/Website/src/styles/globals.css similarity index 100% rename from Website/src/styles/globals.css rename to src/Website/src/styles/globals.css diff --git a/Website/src/util/createErrorToast.ts b/src/Website/src/util/createErrorToast.ts similarity index 100% rename from Website/src/util/createErrorToast.ts rename to src/Website/src/util/createErrorToast.ts diff --git a/Website/src/util/withPageAuthRequired.ts b/src/Website/src/util/withPageAuthRequired.ts similarity index 100% rename from Website/src/util/withPageAuthRequired.ts rename to src/Website/src/util/withPageAuthRequired.ts diff --git a/Website/src/validation/APIResponseValidationSchema.ts b/src/Website/src/validation/APIResponseValidationSchema.ts similarity index 100% rename from Website/src/validation/APIResponseValidationSchema.ts rename to src/Website/src/validation/APIResponseValidationSchema.ts diff --git a/Website/tailwind.config.js b/src/Website/tailwind.config.js similarity index 100% rename from Website/tailwind.config.js rename to src/Website/tailwind.config.js diff --git a/Website/tsconfig.json b/src/Website/tsconfig.json similarity index 100% rename from Website/tsconfig.json rename to src/Website/tsconfig.json diff --git a/Website/vercel.json b/src/Website/vercel.json similarity index 100% rename from Website/vercel.json rename to src/Website/vercel.json