Merge branch 'timo' of https://gitea.bizmatch.net/aknuth/bizmatch-project into timo
This commit is contained in:
commit
1874d5f4ed
|
|
@ -0,0 +1,13 @@
|
|||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# GANZEN dist-Ordner kopieren, nicht nur bizmatch
|
||||
COPY dist ./dist
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm ci --omit=dev
|
||||
|
||||
EXPOSE 4200
|
||||
|
||||
CMD ["node", "dist/bizmatch/server/server.mjs"]
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
services:
|
||||
bizmatch-ssr:
|
||||
build: .
|
||||
image: bizmatch-ssr
|
||||
container_name: bizmatch-ssr
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '4200:4200'
|
||||
environment:
|
||||
NODE_ENV: DEVELOPMENT
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
<td class="py-2 px-4">{{ listing.title }}</td>
|
||||
<td class="py-2 px-4">{{ listing.listingsCategory === 'commercialProperty' ? 'Commercial Property' : 'Business' }}</td>
|
||||
<td class="py-2 px-4">{{ listing.location.name ? listing.location.name : listing.location.county ? listing.location.county : this.selectOptions.getState(listing.location.state) }}</td>
|
||||
<td class="py-2 px-4">${{ listing.price.toLocaleString() }}</td>
|
||||
<td class="py-2 px-4">${{ listing.price ? listing.price.toLocaleString() : '' }}</td>
|
||||
<td class="py-2 px-4 flex justify-center">
|
||||
{{ listing.internalListingNumber ?? '—' }}
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Reference in New Issue