From 3959b51e101191e07116fb6e7caf86a21e9dabcd Mon Sep 17 00:00:00 2001 From: Yamel Senih Date: Mon, 15 Mar 2021 05:15:36 -0400 Subject: [PATCH] Add default API for testing project (#669) Just add default URL for API use this API for testing project without install backend --- config/default.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/default.json b/config/default.json index 8befb78f..e490d300 100644 --- a/config/default.json +++ b/config/default.json @@ -5,14 +5,14 @@ }, "adempiere": { "api": { - "url": "http://localhost:8085", + "url": "https://api.erpya.com", "service": "/adempiere-api", - "fullPath": "http://localhost:8085/adempiere-api" + "fullPath": "https://api.erpya.com/adempiere-api" }, "images": { - "url": "http://localhost:8085", + "url": "https://api.erpya.com", "service": "/adempiere-api/img", - "fullPath": "http://localhost:8085/adempiere-api/img" + "fullPath": "https://api.erpya.com/adempiere-api/img" } } }