Skip to content

Commit

Permalink
Merge pull request #278 from alwinsimon/v1-CI-CD
Browse files Browse the repository at this point in the history
Made small changes to TEST CI-CD.
  • Loading branch information
alwinsimon authored Oct 29, 2023
2 parents a80c994 + 6c4316b commit e9493f2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions auth/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion client/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const IndexPage = ({ currentUser, tickets }) => {
<>
<h1>Landing Page</h1>
<br />
<h5>Signed Out</h5>
<h5>Signed Out.</h5>
</>
);
}
Expand Down
1 change: 1 addition & 0 deletions expiration/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
1 change: 1 addition & 0 deletions orders/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
1 change: 1 addition & 0 deletions payments/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
1 change: 1 addition & 0 deletions tickets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit e9493f2

Please sign in to comment.