From ce92955bb9f5a656c649c8a670fcd275428170e0 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Tue, 6 Jan 2026 17:16:57 -0600 Subject: [PATCH 1/5] new env --- bizmatch/src/environments/environment.dev.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bizmatch/src/environments/environment.dev.ts b/bizmatch/src/environments/environment.dev.ts index d2d69fb..f2991ad 100644 --- a/bizmatch/src/environments/environment.dev.ts +++ b/bizmatch/src/environments/environment.dev.ts @@ -2,4 +2,6 @@ import { environment_base } from './environment.base'; export const environment = environment_base; -environment.apiBaseUrl = 'https://api-dev.bizmatch.net'; +environment.apiBaseUrl = 'http://bizsearch.at-powan.ts.net:3001'; +environment.mailinfoUrl = 'http://bizsearch.at-powan.ts.net'; +environment.imageBaseUrl = 'http://bizsearch.at-powan.ts.net'; From d36da86eeea1857a457a78412f7b81711e641a01 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Wed, 7 Jan 2026 10:28:59 -0600 Subject: [PATCH 2/5] docker based --- bizmatch/Dockerfile | 12 ++++++++++++ bizmatch/docker-compose.yml | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 bizmatch/Dockerfile create mode 100644 bizmatch/docker-compose.yml diff --git a/bizmatch/Dockerfile b/bizmatch/Dockerfile new file mode 100644 index 0000000..4bf22ae --- /dev/null +++ b/bizmatch/Dockerfile @@ -0,0 +1,12 @@ +FROM node:22-alpine + +WORKDIR /app + +COPY dist/bizmatch ./dist +COPY package*.json ./ + +RUN npm ci --omit=dev + +EXPOSE 4200 + +CMD ["node", "dist/bizmatch/server/server.mjs"] diff --git a/bizmatch/docker-compose.yml b/bizmatch/docker-compose.yml new file mode 100644 index 0000000..0d04cab --- /dev/null +++ b/bizmatch/docker-compose.yml @@ -0,0 +1,9 @@ +services: + bizmatch-ssr: + image: bizmatch-ssr + container_name: bizmatch-ssr + restart: unless-stopped + ports: + - '4200:4200' + environment: + NODE_ENV: production From 15252be431817a2357ed31776e328722a8eb86fa Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Wed, 7 Jan 2026 10:33:05 -0600 Subject: [PATCH 3/5] dfgdf --- bizmatch/docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bizmatch/docker-compose.yml b/bizmatch/docker-compose.yml index 0d04cab..3b1a0a9 100644 --- a/bizmatch/docker-compose.yml +++ b/bizmatch/docker-compose.yml @@ -1,9 +1,10 @@ services: bizmatch-ssr: + build: . image: bizmatch-ssr container_name: bizmatch-ssr restart: unless-stopped ports: - '4200:4200' environment: - NODE_ENV: production + NODE_ENV: DEVELOPMENT From 2e9710777411d17be534ae43ebfac0c58b8f5004 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Wed, 7 Jan 2026 10:38:24 -0600 Subject: [PATCH 4/5] change folder --- bizmatch/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bizmatch/Dockerfile b/bizmatch/Dockerfile index 4bf22ae..8515709 100644 --- a/bizmatch/Dockerfile +++ b/bizmatch/Dockerfile @@ -2,7 +2,8 @@ FROM node:22-alpine WORKDIR /app -COPY dist/bizmatch ./dist +# GANZEN dist-Ordner kopieren, nicht nur bizmatch +COPY dist ./dist COPY package*.json ./ RUN npm ci --omit=dev From a6a37f8f1ae14aaf1a845ec0483106284c1339f0 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sat, 10 Jan 2026 14:15:55 -0600 Subject: [PATCH 5/5] fix for price --- .../app/pages/subscription/my-listing/my-listing.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html index 9f3e365..c87276f 100644 --- a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html +++ b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html @@ -73,7 +73,7 @@ {{ listing.title }} {{ listing.listingsCategory === 'commercialProperty' ? 'Commercial Property' : 'Business' }} {{ listing.location.name ? listing.location.name : listing.location.county ? listing.location.county : this.selectOptions.getState(listing.location.state) }} - ${{ listing.price.toLocaleString() }} + ${{ listing.price ? listing.price.toLocaleString() : '' }} {{ listing.internalListingNumber ?? '—' }}