Compare commits

..

16 commits

Author SHA1 Message Date
10bc17eba5 refactor: update labels and placeholders in login form inputs
Some checks failed
container-scan / Container Scan (pull_request) Failing after 21s
docker-build / docker (pull_request) Failing after 2m31s
2025-05-13 23:43:53 +02:00
856c1644bb docs: update contribution guidelines to standardize branch naming and commit message format 2025-05-13 23:43:53 +02:00
a78ae9699a style: standardize quotes and formatting in Select, Separator, and Switch components 2025-05-13 23:43:53 +02:00
80cf343ce1 feat: added tabs to settings window and created general settings window design 2025-05-13 23:43:53 +02:00
14f9b5c48c feat: add ScrollableSettingsWrapper component for scrollable settings 2025-05-13 23:43:53 +02:00
ebfb832042 feat: add Radix UI Select, Separator, and Switch components 2025-05-13 23:43:53 +02:00
6fcecc2c0d feat: implement Settings page with tabs 2025-05-13 23:43:53 +02:00
0d9d9cca3e style: standardize quotes and formatting in Tabs component 2025-05-13 23:43:53 +02:00
73a3e7f870 feat: add Radix UI Tabs component and update dependencies 2025-05-13 23:43:53 +02:00
76d1545beb feat: add Tabs component with Radix UI integration 2025-05-13 23:43:53 +02:00
55deb34ebe style: standardize quotes and formatting in DropdownMenu component 2025-05-13 23:43:53 +02:00
4c34979bb9 feat: restructure Home component layout and add ThemePicker 2025-05-13 23:43:53 +02:00
9dbeae66e3 feat: add theme picker to login page layout 2025-05-13 23:43:53 +02:00
bec9de72e2 feat: add dropdown menu component and theme picker 2025-05-13 23:43:53 +02:00
9cba1500fc fix: update LabeledInput component to use Label from UI library and adjust spacing in LoginForm 2025-05-13 23:43:40 +02:00
e60ba977c3 feat: add Radix UI label component and update dependencies 2025-05-13 23:43:40 +02:00
6 changed files with 3922 additions and 33 deletions

View file

@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Build an image from Dockerfile
run: docker buildx build -t meetup_trivy .
run: docker build -t git.dominikstahl.dev/dhbw-we/meetup:${{ github.sha }} .
- name: Install Trivy
run: |
@ -23,8 +23,8 @@ jobs:
- name: Run Trivy vulnerability scanner
run: |
trivy image --exit-code 1 --severity HIGH,CRITICAL,MEDIUM --ignore-unfixed --no-progress --format table meetup_trivy
trivy image --exit-code 1 --severity HIGH,CRITICAL,MEDIUM --ignore-unfixed --no-progress --format json meetup_trivy > trivy-report.json
trivy image --exit-code 1 --severity HIGH,CRITICAL,MEDIUM --ignore-unfixed --no-progress --format table git.dominikstahl.dev/dhbw-we/meetup:${{ github.sha }}
trivy image --exit-code 1 --severity HIGH,CRITICAL,MEDIUM --ignore-unfixed --no-progress --format json git.dominikstahl.dev/dhbw-we/meetup:${{ github.sha }} > trivy-report.json
- name: Upload Trivy report
uses: forgejo/upload-artifact@v4
@ -33,5 +33,6 @@ jobs:
- name: Clean up Docker
run: |
docker buildx prune --filter=until=48h -f
docker image rm meetup_trivy
docker builder prune -af --keep-storage 2GB
docker rmi $(docker images --filter=reference="git.dominikstahl.dev/dhbw-we/meetup:*" -q)
docker image prune -f

View file

@ -45,7 +45,6 @@ jobs:
with:
push: true
tags: git.dominikstahl.dev/${{ env.REPO }}:${{ steps.get-ref.outputs.tag}}
cache-from: type=registry,ref=git.dominikstahl.dev/${{ env.REPO }}:buildcache
- name: Build and push (push_tag)
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6
@ -53,7 +52,6 @@ jobs:
with:
push: true
tags: git.dominikstahl.dev/${{ env.REPO }}:${{ steps.get-ref.outputs.tag }},git.dominikstahl.dev/${{ env.REPO }}:latest
cache-from: type=registry,ref=git.dominikstahl.dev/${{ env.REPO }}:buildcache
- name: Build and push (push_branch)
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6
@ -61,9 +59,8 @@ jobs:
with:
push: true
tags: git.dominikstahl.dev/${{ env.REPO }}:${{ steps.get-ref.outputs.tag }}
cache-from: type=registry,ref=git.dominikstahl.dev/${{ env.REPO }}:buildcache
cache-to: type=registry,ref=git.dominikstahl.dev/${{ env.REPO }}:buildcache,mode=max
- name: Clean up Docker
run: |
docker buildx prune --filter=until=48h -f
docker builder prune -af --keep-storage 2GB
docker image prune -f

View file

@ -1 +0,0 @@
nodeLinker: node-modules

View file

@ -4,15 +4,13 @@ FROM node:22-alpine@sha256:ad1aedbcc1b0575074a91ac146d6956476c1f9985994810e4ee02
FROM base AS deps
WORKDIR /app
RUN corepack enable
COPY package.json yarn.lock .yarnrc.yml ./
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
# ----- Build -----
FROM base AS builder
WORKDIR /app
RUN corepack enable
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN yarn build

View file

@ -26,7 +26,7 @@
"@radix-ui/react-tabs": "^1.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.510.0",
"lucide-react": "^0.509.0",
"next": "15.3.2",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.6",
@ -38,8 +38,8 @@
"@eslint/eslintrc": "3.3.1",
"@tailwindcss/postcss": "4.1.6",
"@types/node": "22.15.17",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"eslint": "9.26.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "10.1.5",
@ -50,5 +50,5 @@
"tw-animate-css": "1.2.9",
"typescript": "5.8.3"
},
"packageManager": "yarn@4.9.1"
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}

3924
yarn.lock

File diff suppressed because it is too large Load diff