mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 14:15:44 +00:00
feat: ( payment ) create payment microservice
This commit is contained in:
9
apps/edr-payment-api/src/config/cbe.config.ts
Normal file
9
apps/edr-payment-api/src/config/cbe.config.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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 || "",
|
||||
}));
|
||||
Reference in New Issue
Block a user