mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 16:00:56 +00:00
10 lines
326 B
TypeScript
10 lines
326 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('cbe', () => ({
|
|
baseUrl: process.env.CBE_BASE_URL || '',
|
|
merchantId: process.env.CBE_MERCHANT_ID || '',
|
|
secretKey: process.env.CBE_SECRET_KEY || '',
|
|
notifyUrl: process.env.CBE_NOTIFY_URL || '',
|
|
returnUrl: process.env.CBE_RETURN_URL || '',
|
|
}));
|