From 6c4316b5ae71503bc89823b9c15b742337213ffa Mon Sep 17 00:00:00 2001
From: "Dr. Alwin Simon" <003alwin@gmail.com>
Date: Sun, 29 Oct 2023 14:13:07 +0530
Subject: [PATCH] Made small changes to TEST CI-CD.
---
auth/src/index.ts | 1 +
client/pages/index.js | 2 +-
expiration/src/index.ts | 1 +
orders/src/index.ts | 1 +
payments/src/index.ts | 1 +
tickets/src/index.ts | 1 +
6 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/auth/src/index.ts b/auth/src/index.ts
index 6bcdcef..35dce16 100644
--- a/auth/src/index.ts
+++ b/auth/src/index.ts
@@ -3,6 +3,7 @@ import mongoose from "mongoose";
import { app } from "./app";
const startServer = async () => {
+ console.log("Starting up............");
const PORT = 3000;
const SERVICE_NAME = "AUTH";
diff --git a/client/pages/index.js b/client/pages/index.js
index 2401514..2023e0a 100644
--- a/client/pages/index.js
+++ b/client/pages/index.js
@@ -6,7 +6,7 @@ const IndexPage = ({ currentUser, tickets }) => {
<>
Landing Page
- Signed Out
+ Signed Out.
>
);
}
diff --git a/expiration/src/index.ts b/expiration/src/index.ts
index 4d71bbe..d999a55 100644
--- a/expiration/src/index.ts
+++ b/expiration/src/index.ts
@@ -2,6 +2,7 @@ import { OrderCreatedListener } from "./events/listeners/order-created-listener"
import { natsClient } from "./nats-client";
const startServer = async () => {
+ console.log("Starting up............");
// Server Configuration
const PORT = 3000;
const SERVICE_NAME = "EXPIRATION";
diff --git a/orders/src/index.ts b/orders/src/index.ts
index dc9303d..77b71d9 100644
--- a/orders/src/index.ts
+++ b/orders/src/index.ts
@@ -10,6 +10,7 @@ import { OrderExpirationListener } from "./events/listeners/expiration-complete-
import { PaymentCreatedListener } from "./events/listeners/payment-created-listener";
const startServer = async () => {
+ console.log("Starting up............");
// Server Configuration
const PORT = 3000;
const SERVICE_NAME = "ORDERS";
diff --git a/payments/src/index.ts b/payments/src/index.ts
index a89c8b7..9e3cea8 100644
--- a/payments/src/index.ts
+++ b/payments/src/index.ts
@@ -8,6 +8,7 @@ import { OrderCreatedListener } from "./events/listeners/order-created-listener"
import { OrderCancelledListener } from "./events/listeners/order-cancelled-listener";
const startServer = async () => {
+ console.log("Starting up............");
// Tickets Server Configuration
const PORT = 3000;
const SERVICE_NAME = "PAYMENTS";
diff --git a/tickets/src/index.ts b/tickets/src/index.ts
index 9fc7887..ff9be46 100644
--- a/tickets/src/index.ts
+++ b/tickets/src/index.ts
@@ -8,6 +8,7 @@ import { OrderCreatedListener } from "./events/listeners/order-created-listener"
import { OrderCancelledListener } from "./events/listeners/order-cancelled-listener";
const startServer = async () => {
+ console.log("Starting up............");
// Tickets Server Configuration
const PORT = 3000;
const SERVICE_NAME = "TICKETS";