Update payment service and API base URL for local development

This commit is contained in:
marshal
2026-06-29 16:03:53 +03:00
parent 6685a3ba76
commit 69df391f90
4 changed files with 35 additions and 52 deletions

View File

@@ -19,8 +19,8 @@ export class PaymentClientService {
private readonly logger = new Logger(PaymentClientService.name);
private readonly baseUrl = (
// process.env.PAYMENT_API_URL ??
"https://paymentcallback.triaplc.com"
// "http://localhost:3003"
// "https://paymentcallback.triaplc.com"
"http://localhost:3003"
).replace(/\/$/, "");
private readonly serviceToken = process.env.SERVICE_AUTH_TOKEN ?? "";