feat: ( payment ) create payment microservice

This commit is contained in:
Abubeker Yasin
2026-06-11 15:25:24 +03:00
parent 3235567b41
commit 2b430f8e76
54 changed files with 2809 additions and 0 deletions

View 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 || "",
}));