Skip to content

Commit

Permalink
Merge pull request #14 from vishnumohanan404/dev
Browse files Browse the repository at this point in the history
consoles updated
  • Loading branch information
vishnumohanan404 authored Jun 29, 2024
2 parents 17ef9e2 + 6d36b68 commit 20bc3c1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion auth/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import mongoose from "mongoose";
import { app } from "./app";

const start = async () => {
console.log("Starting up........");
console.log("Starting up....");

if (!process.env.JWT_KEY) {
throw new Error("JWT_KEY is not defined");
Expand Down
2 changes: 1 addition & 1 deletion client/api/build-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default ({ req }) => {
// We are on the server side render
return axios.create({
baseURL:
"http://ticketing.vishnuverse.xyz",
"http://ticketing.vishnuverse.xyz/",
headers: req.headers,
});
} else {
Expand Down
2 changes: 1 addition & 1 deletion expiration/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { natsWrapper } from "./nats-wrapper";
import { OrderCreatedListener } from "./events/listeners/order-created-listener";

const start = async () => {
console.log("Starting up....")
console.log("Starting up.....")
if (!process.env.NATS_CLIENT_ID) {
throw new Error("NATS_CLIENT_ID is not defined");
}
Expand Down
2 changes: 1 addition & 1 deletion orders/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ExpirationCompleteListener } from "./events/listeners/expiration-comple
import { PaymentCreatedListener } from "./events/listeners/payment-created-listener";

const start = async () => {
console.log("Starting up....");
console.log("Starting up.....");
if (!process.env.JWT_KEY) {
throw new Error("JWT_KEY is not defined");
}
Expand Down
2 changes: 1 addition & 1 deletion payments/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { OrderCancelledListener } from "./events/listeners/order-cancelled-liste
import { OrderCreatedListener } from "./events/listeners/order-created-listener";

const start = async () => {
console.log("Starting up....")
console.log("Starting up.....")
if (!process.env.JWT_KEY) {
throw new Error("JWT_KEY is not defined");
}
Expand Down
2 changes: 1 addition & 1 deletion tickets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { OrderCreatedListener } from "./events/listeners/order-created-listener"
import { OrderCancelledListener } from "./events/listeners/order-cancelled-listener";

const start = async () => {
console.log("Starting up....")
console.log("Starting up.....")
if (!process.env.JWT_KEY) {
throw new Error("JWT_KEY is not defined");
}
Expand Down

0 comments on commit 20bc3c1

Please sign in to comment.