mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 00:45:41 +00:00
11 lines
408 B
TypeScript
11 lines
408 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('waafi', () => ({
|
|
baseUrl: process.env.WAAFI_BASE_URL ?? 'https://api.waafipay.net',
|
|
merchantUid: process.env.WAAFI_MERCHANT_UID ?? '',
|
|
apiUserId: process.env.WAAFI_API_USER_ID ?? '',
|
|
apiKey: process.env.WAAFI_API_KEY ?? '',
|
|
notifyUrl: process.env.WAAFI_NOTIFY_URL ?? '',
|
|
returnUrl: process.env.WAAFI_RETURN_URL ?? '',
|
|
}));
|