Gateway Service for Backyard powered by Kong
npm install @backyard/service-kong``typescript
import { createWorkspaceConfiguration } from '@backyard/common';
import { useKongService } from '@backyard/service-kong';
export default createWorkspaceConfiguration({
services: [
useKongService({
name: 'gateway',
settings: {
jwt: {
iat: number,
secret: string,
groupName: string,
exp: number
}
}
}),
],
});
``