[recommendations-and-nl-search | DONE | CHANGED]: environment.ts: Override properties for search API to get data from the production index.

This commit is contained in:
Konstantina Galouni 2024-11-04 18:02:11 +02:00
parent 2b06ead5e4
commit 2429eb9b32
1 changed files with 6 additions and 2 deletions

View File

@ -32,9 +32,13 @@ let props: EnvProperties = {
recommendationsForCommunityAPI: 'https://darelab.athenarc.gr/api/faircore/category-based-recommender/recommend',
recommendationsForOrcidAPI: 'https://darelab.athenarc.gr/api/faircore/user-to-item-recommender/recommend',
recommendationsForPublicationAPI: 'https://darelab.athenarc.gr/api/faircore/item-to-item-recommender/recommend/',
feedbackForRecommendationAPI: 'https://darelab.athenarc.gr/api/faircore/category-based-recommender/update/'
feedbackForRecommendationAPI: 'https://darelab.athenarc.gr/api/faircore/category-based-recommender/update/',
searchAPIURLLAst: "http://services.openaire.eu/search/v2/api/",
searchResourcesAPIURL: "https://services.openaire.eu/search/v2/api/resources",
csvAPIURL: "https://services.openaire.eu/search/v2/api/reports",
};
export let properties: EnvProperties = {
...props, ...common, ...commonDev
...common, ...commonDev, ...props
}