From 7deed4abe63c2d404f76bc393d50381873e16371 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 8 Jul 2025 19:16:22 +0200 Subject: [PATCH 1/4] use with turbo only task count = cpu core count for build --- deployment/bare_metal/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/bare_metal/start.sh b/deployment/bare_metal/start.sh index 0eda8958a..498a112b9 100755 --- a/deployment/bare_metal/start.sh +++ b/deployment/bare_metal/start.sh @@ -282,7 +282,7 @@ bun install # build all modules log_step 'build all modules' -turbo build --env-mode=loose +turbo build --env-mode=loose --concurrency=$(nproc) # database log_step 'Updating database' From 2fb4e9f3d43c049b9607a6b9de9422b92e02b43b Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 15 Jul 2025 11:23:27 +0200 Subject: [PATCH 2/4] make useAuthLinks more general and use it --- frontend/src/components/Auth/AuthNavbar.vue | 6 ++--- .../src/components/Auth/AuthNavbarSmall.vue | 6 ++--- .../LinkInformations/RedeemLoggedOut.vue | 6 ++--- .../RedeemSelectCommunity.vue | 6 ++--- frontend/src/components/Menu/NavItem.vue | 2 +- frontend/src/composables/useAuthLinks.js | 27 ++++++++++--------- frontend/src/pages/Login.vue | 12 ++++----- frontend/src/pages/Register.vue | 4 +-- frontend/src/pages/ResetPassword.spec.js | 7 ++--- frontend/src/pages/ResetPassword.vue | 14 ++++++---- frontend/src/routes/routes.js | 7 +++++ 11 files changed, 55 insertions(+), 42 deletions(-) diff --git a/frontend/src/components/Auth/AuthNavbar.vue b/frontend/src/components/Auth/AuthNavbar.vue index 710d15b30..be605bc86 100644 --- a/frontend/src/components/Auth/AuthNavbar.vue +++ b/frontend/src/components/Auth/AuthNavbar.vue @@ -8,11 +8,11 @@ - + {{ $t('signup') }} {{ $t('|') }} - + {{ $t('signin') }} @@ -25,7 +25,7 @@ import { useAuthLinks } from '@/composables/useAuthLinks' import NavItem from '../Menu/NavItem.vue' -const { login, register } = useAuthLinks() +const { routeWithParamsAndQuery } = useAuthLinks() const backgroundHeader = '/img/template/gradido_background_header.png' const logo = '/img/brand/gradido-logo_200x59.png' diff --git a/frontend/src/components/Auth/AuthNavbarSmall.vue b/frontend/src/components/Auth/AuthNavbarSmall.vue index e7917ffe8..bf1a4a364 100644 --- a/frontend/src/components/Auth/AuthNavbarSmall.vue +++ b/frontend/src/components/Auth/AuthNavbarSmall.vue @@ -2,9 +2,9 @@ @@ -14,7 +14,7 @@ import { useAuthLinks } from '@/composables/useAuthLinks' import NavItem from '../Menu/NavItem.vue' -const { login, register } = useAuthLinks() +const { routeWithParamsAndQuery } = useAuthLinks()