-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from catenax-ng/main
New Release 1.1.0
- Loading branch information
Showing
180 changed files
with
2,091 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
################################################################################ | ||
# Copyright (c) 2022,2023 BMW Group AG | ||
# Copyright (c) 2022,2023 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################ | ||
|
||
|
||
server { | ||
|
||
listen 8080; | ||
server_name localhost; | ||
|
||
location / { | ||
root /usr/share/nginx/html; | ||
index index.html; | ||
try_files $uri $uri/index.html /index.html; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
REACT_APP_DASHBOARD_URL=http://localhost:8080/api/dashboard/getTableInfo? | ||
REACT_APP_DASHBOARD_URL_RATINGSTABLE=http://localhost:8080/api/dashboard/ratingsByYear? | ||
REACT_APP_DATEFORM_URL=http://localhost:8080/api/dashboard/allYears | ||
REACT_APP_DASHBOARD_WOLRD_MAP_URL=http://localhost:8080/api/dashboard/getWorldMap? | ||
REACT_APP_DASHBOARD_FILE_TEMPLATE_DOWNLOAD=http://localhost:8080/api/dashboard/getTemplate? | ||
REACT_APP_GET_RANGES=http://localhost:8080/api/dashboard/getUserRanges? | ||
REACT_APP_SAVE_RANGES=http://localhost:8080/api/dashboard/saveUserRanges? | ||
REACT_APP_UPLOAD_FILE=http://localhost:8080/api/dashboard/uploadCsv? | ||
REACT_APP_GET_COUNTRYS=http://localhost:8080/api/dashboard/getCountryFilterByISO2? | ||
REACT_APP_GET_BPN_COUNTRYS=http://localhost:8080/api/dashboard/getBpnCountrys? | ||
REACT_APP_GET_BPNS=http://localhost:8080/api/dashboard/getCompanyBpns? | ||
REACT_APP_GET_REPORTS_BY_USER=http://localhost:8080/api/dashboard/getReportsByCompanyUser? | ||
REACT_APP_GET_REPORT_VALUES_BY_REPORT=http://localhost:8080/api/dashboard/getReportsValueByReport? | ||
REACT_APP_SAVE_REPORTS=http://localhost:8080/api/dashboard/saveReports? | ||
REACT_APP_SHARE_REPORTS=http://localhost:8080/api/dashboard/shareReport? | ||
REACT_APP_UPDATE_REPORTS=http://localhost:8080/api/dashboard/updateReports? | ||
REACT_APP_DELETE_REPORTS=http://localhost:8080/api/dashboard/deleteReport | ||
REACT_APP_GET_USER_BPDM_GATES=http://localhost:8080/api/dashboard/getAllUserBPDMGates? | ||
REACT_APP_DELETE_RATINGS=http://localhost:8080/api/dashboard/deleteRating | ||
REACT_APP_GET_COMPANY_USERS=http://localhost:8080/api/dashboard/getUserFromCompany? | ||
REACT_URL_ENV=http://localhost:8080 | ||
REACT_APP_AUTH_URL=http://localhost:8080/auth | ||
REACT_APP_PORTAL_URL=http://localhost:8080/auth | ||
REACT_APP_PORTAL_BACKEND_URL=http://localhost:8080/auth | ||
REACT_APP_DASHBOARD_URL=${REACT_URL_ENV}/api/dashboard/getTableInfo? | ||
REACT_APP_DASHBOARD_URL_RATINGSTABLE=${REACT_URL_ENV}/api/dashboard/ratingsByYear? | ||
REACT_APP_DATEFORM_URL=${REACT_URL_ENV}/api/dashboard/allYears | ||
REACT_APP_DASHBOARD_WOLRD_MAP_URL=${REACT_URL_ENV}/api/dashboard/getWorldMap? | ||
REACT_APP_DASHBOARD_FILE_TEMPLATE_DOWNLOAD=${REACT_URL_ENV}/api/dashboard/getTemplate? | ||
REACT_APP_GET_RANGES=${REACT_URL_ENV}/api/dashboard/getUserRanges? | ||
REACT_APP_SAVE_RANGES=${REACT_URL_ENV}/api/dashboard/saveUserRanges? | ||
REACT_APP_UPLOAD_FILE=${REACT_URL_ENV}/api/dashboard/uploadCsv? | ||
REACT_APP_GET_COUNTRYS=${REACT_URL_ENV}/api/dashboard/getCountryFilterByISO2? | ||
REACT_APP_GET_BPN_COUNTRYS=${REACT_URL_ENV}/api/dashboard/getBpnCountrys? | ||
REACT_APP_GET_BPNS=${REACT_URL_ENV}/api/dashboard/getCompanyBpns? | ||
REACT_APP_GET_REPORTS_BY_USER=${REACT_URL_ENV}/api/dashboard/getReportsByCompanyUser? | ||
REACT_APP_GET_REPORT_VALUES_BY_REPORT=${REACT_URL_ENV}/api/dashboard/getReportsValueByReport? | ||
REACT_APP_SAVE_REPORTS=${REACT_URL_ENV}/api/dashboard/saveReports? | ||
REACT_APP_SHARE_REPORTS=${REACT_URL_ENV}/api/dashboard/shareReport? | ||
REACT_APP_UPDATE_REPORTS=${REACT_URL_ENV}/api/dashboard/updateReports? | ||
REACT_APP_DELETE_REPORTS=${REACT_URL_ENV}/api/dashboard/deleteReport | ||
REACT_APP_GET_USER_BPDM_GATES=${REACT_URL_ENV}/api/dashboard/getAllUserBPDMGates? | ||
REACT_APP_DELETE_RATINGS=${REACT_URL_ENV}/api/dashboard/deleteRating | ||
REACT_APP_GET_COMPANY_USERS=${REACT_URL_ENV}/api/dashboard/getUserFromCompany? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
REACT_APP_DASHBOARD_URL=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getTableInfo? | ||
REACT_APP_DASHBOARD_URL_RATINGSTABLE=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/ratingsByYear? | ||
REACT_APP_DATEFORM_URL=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/allYears | ||
REACT_APP_DASHBOARD_WOLRD_MAP_URL=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getWorldMap? | ||
REACT_APP_DASHBOARD_FILE_TEMPLATE_DOWNLOAD=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getTemplate? | ||
REACT_APP_GET_RANGES=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getUserRanges? | ||
REACT_APP_SAVE_RANGES=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/saveUserRanges? | ||
REACT_APP_UPLOAD_FILE=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/uploadCsv? | ||
REACT_APP_GET_COUNTRYS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getCountryFilterByISO2? | ||
REACT_APP_GET_BPN_COUNTRYS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getBpnCountrys? | ||
REACT_APP_GET_BPNS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getCompanyBpns? | ||
REACT_APP_GET_REPORTS_BY_USER=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getReportsByCompanyUser? | ||
REACT_APP_GET_REPORT_VALUES_BY_REPORT=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getReportsValueByReport? | ||
REACT_APP_SAVE_REPORTS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/saveReports? | ||
REACT_APP_SHARE_REPORTS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/shareReport? | ||
REACT_APP_UPDATE_REPORTS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/updateReports? | ||
REACT_APP_DELETE_REPORTS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/deleteReport | ||
REACT_APP_GET_USER_BPDM_GATES=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getAllUserBPDMGates? | ||
REACT_APP_DELETE_RATINGS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/deleteRating | ||
REACT_APP_GET_COMPANY_USERS=https://vas-country-risk-backend.int.demo.catena-x.net/api/dashboard/getUserFromCompany? | ||
REACT_URL_ENV=https://vas-country-risk-backend.int.demo.catena-x.net | ||
REACT_APP_AUTH_URL=https://centralidp.int.demo.catena-x.net/auth | ||
REACT_APP_PORTAL_URL=https://portal.dev.demo.catena-x.net | ||
REACT_APP_PORTAL_BACKEND_URL=https://portal-backend.dev.demo.catena-x.net | ||
REACT_APP_DASHBOARD_URL=${REACT_URL_ENV}/api/dashboard/getTableInfo? | ||
REACT_APP_DASHBOARD_URL_RATINGSTABLE=${REACT_URL_ENV}/api/dashboard/ratingsByYear? | ||
REACT_APP_DATEFORM_URL=${REACT_URL_ENV}/api/dashboard/allYears | ||
REACT_APP_DASHBOARD_WOLRD_MAP_URL=${REACT_URL_ENV}/api/dashboard/getWorldMap? | ||
REACT_APP_DASHBOARD_FILE_TEMPLATE_DOWNLOAD=${REACT_URL_ENV}/api/dashboard/getTemplate? | ||
REACT_APP_GET_RANGES=${REACT_URL_ENV}/api/dashboard/getUserRanges? | ||
REACT_APP_SAVE_RANGES=${REACT_URL_ENV}/api/dashboard/saveUserRanges? | ||
REACT_APP_UPLOAD_FILE=${REACT_URL_ENV}/api/dashboard/uploadCsv? | ||
REACT_APP_GET_COUNTRYS=${REACT_URL_ENV}/api/dashboard/getCountryFilterByISO2? | ||
REACT_APP_GET_BPN_COUNTRYS=${REACT_URL_ENV}/api/dashboard/getBpnCountrys? | ||
REACT_APP_GET_BPNS=${REACT_URL_ENV}/api/dashboard/getCompanyBpns? | ||
REACT_APP_GET_REPORTS_BY_USER=${REACT_URL_ENV}/api/dashboard/getReportsByCompanyUser? | ||
REACT_APP_GET_REPORT_VALUES_BY_REPORT=${REACT_URL_ENV}/api/dashboard/getReportsValueByReport? | ||
REACT_APP_SAVE_REPORTS=${REACT_URL_ENV}/api/dashboard/saveReports? | ||
REACT_APP_SHARE_REPORTS=${REACT_URL_ENV}/api/dashboard/shareReport? | ||
REACT_APP_UPDATE_REPORTS=${REACT_URL_ENV}/api/dashboard/updateReports? | ||
REACT_APP_DELETE_REPORTS=${REACT_URL_ENV}/api/dashboard/deleteReport | ||
REACT_APP_GET_USER_BPDM_GATES=${REACT_URL_ENV}/api/dashboard/getAllUserBPDMGates? | ||
REACT_APP_DELETE_RATINGS=${REACT_URL_ENV}/api/dashboard/deleteRating | ||
REACT_APP_GET_COMPANY_USERS=${REACT_URL_ENV}/api/dashboard/getUserFromCompany? |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.