From aed6b2fc06f9c2ae6071503a10489ce88289ad6c Mon Sep 17 00:00:00 2001 From: MDBBee Date: Fri, 24 Oct 2025 03:11:14 +0300 Subject: [PATCH 1/3] Start up notification on orders service --- orders/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orders/src/index.ts b/orders/src/index.ts index 176e094..7a18034 100644 --- a/orders/src/index.ts +++ b/orders/src/index.ts @@ -9,6 +9,8 @@ import { PaymentCreatedListener } from './events/listeners/payment-created-liste const PORT = 3000; const start = async () => { + console.log('Orders service starting...'); + if (!process.env.JWT_KEY) { throw new Error('JWT_KEY not found/defined...'); } From c53e8eb634c3520eb48e81495e917fa6031770e6 Mon Sep 17 00:00:00 2001 From: MDBBee Date: Fri, 24 Oct 2025 03:15:38 +0300 Subject: [PATCH 2/3] Start up notification on payments & tickets service --- payments/src/index.ts | 2 ++ tickets/src/index.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/payments/src/index.ts b/payments/src/index.ts index 63006ca..a83aa49 100644 --- a/payments/src/index.ts +++ b/payments/src/index.ts @@ -7,6 +7,8 @@ import { OrderCancelledListener } from './events/listeners/order-cancelled-liste const PORT = 3000; const start = async () => { + console.log('Payments service starting...'); + if (!process.env.JWT_KEY) { throw new Error('JWT_KEY not found/defined...'); } diff --git a/tickets/src/index.ts b/tickets/src/index.ts index 63006ca..b37fefe 100644 --- a/tickets/src/index.ts +++ b/tickets/src/index.ts @@ -7,6 +7,8 @@ import { OrderCancelledListener } from './events/listeners/order-cancelled-liste const PORT = 3000; const start = async () => { + console.log('Tickets service starting...'); + if (!process.env.JWT_KEY) { throw new Error('JWT_KEY not found/defined...'); } From 12be20971949ebf966d87ea364f1c1f1468d05a1 Mon Sep 17 00:00:00 2001 From: MDBBee Date: Fri, 24 Oct 2025 03:28:24 +0300 Subject: [PATCH 3/3] Update1 --- auth/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/index.ts b/auth/src/index.ts index d3b86e3..936fd4f 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -4,7 +4,7 @@ import { app } from './app'; const PORT = 3000; const start = async () => { - console.log('Testing Github Action Workflows!'); + console.log('Testing Github Action Workflows!..'); if (!process.env.JWT_KEY) { throw new Error('JWT_KEY not found/defined...');