Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...');
Expand Down
2 changes: 2 additions & 0 deletions orders/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...');
}
Expand Down
2 changes: 2 additions & 0 deletions payments/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...');
}
Expand Down
2 changes: 2 additions & 0 deletions tickets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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...');
}
Expand Down
Loading