@idevconn/create-icore 0.9.0 → 0.9.1

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": "@idevconn/create-icore",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Bootstrap a new project from the iCore scaffold (Nx + NestJS + React + Vite + shadcn/Tailwind, swappable auth + storage providers).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "iDEVconn",
@@ -48,6 +48,18 @@ services:
48
48
  networks: [icore]
49
49
  restart: unless-stopped
50
50
 
51
+ payment:
52
+ build:
53
+ context: .
54
+ dockerfile: Dockerfile.ms-payment
55
+ env_file: .env.docker
56
+ environment:
57
+ PAYMENT_TRANSPORT: tcp
58
+ PAYMENT_HOST: 0.0.0.0
59
+ PAYMENT_PORT: 4003
60
+ networks: [icore]
61
+ restart: unless-stopped
62
+
51
63
  gateway:
52
64
  build:
53
65
  context: .
@@ -60,6 +72,9 @@ services:
60
72
  UPLOAD_TRANSPORT: redis
61
73
  UPLOAD_REDIS_URL: redis://redis:6379
62
74
  JOBS_REDIS_URL: redis://redis:6379
75
+ PAYMENT_TRANSPORT: tcp
76
+ PAYMENT_HOST: payment
77
+ PAYMENT_PORT: 4003
63
78
  ports:
64
79
  - '3001:3001'
65
80
  depends_on:
@@ -71,6 +86,8 @@ services:
71
86
  condition: service_started
72
87
  jobs:
73
88
  condition: service_started
89
+ payment:
90
+ condition: service_started
74
91
  networks: [icore]
75
92
  restart: unless-stopped
76
93