@bluealba/platform-cli 0.3.1-feature-platform-cli-224 → 0.3.1-feature-platform-cli-225

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluealba/platform-cli",
3
- "version": "0.3.1-feature-platform-cli-224",
3
+ "version": "0.3.1-feature-platform-cli-225",
4
4
  "description": "Blue Alba Platform CLI",
5
5
  "license": "PolyForm-Noncommercial-1.0.0",
6
6
  "type": "module",
@@ -5,7 +5,7 @@ ENV PORT=3000
5
5
 
6
6
  RUN apk -U upgrade --no-cache
7
7
 
8
- WORKDIR /app/out/{{bootstrapName}}-bootstrap-service
8
+ WORKDIR /app/out/{{bootstrapServiceName}}
9
9
 
10
10
  COPY ./out/ /app/out
11
11
 
@@ -3,7 +3,7 @@ FROM node:20.11-alpine as development
3
3
  ENV NODE_ENV=development
4
4
  ENV PORT=80
5
5
 
6
- WORKDIR /app/out/{{bootstrapServiceDir}}/{{bootstrapName}}-bootstrap-service
6
+ WORKDIR /app/out/{{bootstrapServiceDir}}/{{bootstrapServiceName}}
7
7
 
8
8
  EXPOSE 80
9
9
 
@@ -1,4 +1,4 @@
1
- # {{bootstrapName}}-bootstrap-service
1
+ # {{bootstrapServiceName}}
2
2
 
3
3
  A service that defines the {{platformTitle}} elements such as modules, operations, roles, etc.
4
4
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "@{{organizationName}}/{{bootstrapName}}-bootstrap-service",
2
+ "name": "@{{organizationName}}/{{bootstrapServiceName}}",
3
3
  "displayName": "{{platformTitle}} Bootstrap Service",
4
4
  "version": "0.1.0",
5
5
  "private": true,
@@ -1,12 +1,12 @@
1
1
  # Core Services
2
2
  services:
3
- {{platformName}}-bootstrap-service:
3
+ {{bootstrapServiceName}}:
4
4
  build:
5
- context: ../services/{{platformName}}-bootstrap-service
5
+ context: ../services/{{bootstrapServiceName}}
6
6
  dockerfile: Dockerfile.development
7
7
  environment:
8
8
  - NODE_TLS_REJECT_UNAUTHORIZED=0
9
- - SERVICE_ACCESS_NAME={{platformName}}-bootstrap-service
9
+ - SERVICE_ACCESS_NAME={{bootstrapServiceName}}
10
10
  - WAIT_TIME=5000
11
11
  - SYNC_STRATEGY=${PAE_BOOTSTRAP_SYNC_STRATEGY}
12
12
  - GATEWAY_SERVICE_URL=${PAE_GATEWAY_URL}
@@ -17,9 +17,9 @@ services:
17
17
  pae-nestjs-gateway-service:
18
18
  condition: service_healthy
19
19
 
20
- {{platformName}}-customization-ui:
20
+ {{customizationUiName}}:
21
21
  build:
22
- context: ../ui/{{platformName}}-customization-ui
22
+ context: ../ui/{{customizationUiName}}
23
23
  dockerfile: Dockerfile.development
24
24
  ports:
25
25
  - 9446:80