Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INJIWEB-1359] Fixed review comment to remove inji-web-proxy and othe… #231

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose/config/mimoto-default.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mosip.inji.warningDomainName=${mosip.api.public.url}
#timeout for vc download api via openid4vci flow in milliseconds
mosip.inji.openId4VCIDownloadVCTimeout=30000
# inji documentation url
mosip.inji.aboutInjiUrl=https://docs.mosip.io/inji/inji-mobile-wallet/overview
mosip.inji.aboutInjiUrl=https://docs.inji.io/inji-wallet/inji-mobile
# minimum storage space required for making audit entry in MB
mosip.inji.minStorageRequiredForAuditEntry=2
# minimum storage space required for downloading / receiving vc in MB
Expand Down
5 changes: 0 additions & 5 deletions helm/inji-web/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ data:
access_log /var/log/nginx/access1.log;
error_log /var/log/nginx/error1.log;

# Increase buffer sizes for reading response headers from the upstream server
proxy_buffer_size 16k; # Buffer for the first part of the response header
proxy_buffers 4 16k; # Number of buffers and their size for reading the response
proxy_busy_buffers_size 32k; # Buffer size for busy buffers

server {
listen {{ .Values.inji_web.inji_web_port }};
server_name localhost;
Expand Down
2 changes: 0 additions & 2 deletions inji-web-proxy/.env

This file was deleted.

4 changes: 0 additions & 4 deletions inji-web-proxy/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions inji-web-proxy/Dockerfile

This file was deleted.

20 changes: 0 additions & 20 deletions inji-web-proxy/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions inji-web-proxy/package.json

This file was deleted.

53 changes: 0 additions & 53 deletions inji-web-proxy/proxy_server.js

This file was deleted.

26 changes: 26 additions & 0 deletions inji-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion inji-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@types/react-outside-click-handler": "^1.3.3",
"@types/react-redux": "^7.1.33",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"i18next": "^23.11.2",
"postcss-cli": "^11.0.0",
Expand All @@ -33,7 +34,7 @@
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "set PORT=3001 && react-scripts start",
"start": "cross-env PORT=3004 react-scripts start",
"build": "CI=false react-scripts build",
"test": "react-scripts test --silent --testPathPattern=__tests__",
"eject": "react-scripts eject",
Expand Down
2 changes: 1 addition & 1 deletion inji-web/public/env.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ window._env_ = {
DEFAULT_FAVICON: "favicon.ico",
DEFAULT_TITLE: "Inji Wallet",
DEFAULT_FONT_URL: "https://fonts.googleapis.com/css?family=Inter",
MIMOTO_HOST: "http://localhost:3010"
MIMOTO_HOST: "http://localhost:8099/v1/mimoto"
};
Loading