upgade package
@@ -5,8 +5,8 @@ VITE_APP_VERSION=v8.2.3
|
|||||||
VITE_APP_THEME_NAME=WrenchBoard
|
VITE_APP_THEME_NAME=WrenchBoard
|
||||||
VITE_APP_THEME_DEMO=demo1
|
VITE_APP_THEME_DEMO=demo1
|
||||||
VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0
|
VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0
|
||||||
VITE_APP_SASS_PATH=src/_metronic/assets/sass/core/components
|
VITE_APP_SASS_PATH=src/_digifi/assets/sass/core/components
|
||||||
VITE_APP_SASS_VARIABLES_PATH=src/_metronic/assets/sass/core/components/_variables.scss
|
VITE_APP_SASS_VARIABLES_PATH=src/_digifi/assets/sass/core/components/_variables.scss
|
||||||
VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469
|
VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469
|
||||||
VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/
|
VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/
|
||||||
VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react
|
VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ PORT=3011
|
|||||||
VITE_APP_BASE_LAYOUT_CONFIG_KEY='metronic-react-demo1-8150'
|
VITE_APP_BASE_LAYOUT_CONFIG_KEY='metronic-react-demo1-8150'
|
||||||
VITE_APP_API_URL=https://preview.keenthemes.com/metronic8/laravel/api
|
VITE_APP_API_URL=https://preview.keenthemes.com/metronic8/laravel/api
|
||||||
VITE_APP_VERSION=v8.2.3
|
VITE_APP_VERSION=v8.2.3
|
||||||
VITE_APP_THEME_NAME=WrenchBoard
|
VITE_APP_THEME_NAME=DigiFi
|
||||||
VITE_APP_THEME_DEMO=demo1
|
VITE_APP_THEME_DEMO=demo1
|
||||||
VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0
|
VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0
|
||||||
VITE_APP_SASS_PATH=src/_metronic/assets/sass/core/components
|
VITE_APP_SASS_PATH=src/_digifi/assets/sass/core/components
|
||||||
VITE_APP_SASS_VARIABLES_PATH=src/_metronic/assets/sass/core/components/_variables.scss
|
VITE_APP_SASS_VARIABLES_PATH=src/_digifi/assets/sass/core/components/_variables.scss
|
||||||
VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469
|
VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469
|
||||||
VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/
|
VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/
|
||||||
VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react
|
VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
src/_metronic/assets/*
|
src/_digifi/assets/*
|
||||||
@@ -92,30 +92,35 @@ RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \
|
|||||||
# smoke test
|
# smoke test
|
||||||
&& yarn --version
|
&& yarn --version
|
||||||
|
|
||||||
COPY docker-entrypoint.sh /usr/local/bin/
|
|
||||||
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
||||||
|
|
||||||
# set working directory
|
# set working directory
|
||||||
WORKDIR /app
|
# WORKDIR /app
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
# add `/app/node_modules/.bin` to $PATH
|
# add `/app/node_modules/.bin` to $PATH
|
||||||
ENV PATH /app/node_modules/.bin:$PATH
|
# ENV PATH /app/node_modules/.bin:$PATH
|
||||||
|
ENV PATH /usr/src/app/node_modules/.bin:$PATH
|
||||||
|
|
||||||
# install app dependencies
|
# install app dependencies
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
#COPY package-lock.json ./
|
#COPY package-lock.json ./
|
||||||
RUN npm install --silent
|
# RUN yarn install --silent
|
||||||
RUN npm install react-scripts@3.4.1 -g --silent
|
# RUN npm install react-scripts@3.4.1 -g --silent
|
||||||
RUN npm install -g serve
|
|
||||||
|
|
||||||
# add app
|
# add app
|
||||||
COPY . ./
|
COPY . ./
|
||||||
|
#c RUN yarn run build
|
||||||
# build app
|
|
||||||
RUN npm run-script build
|
|
||||||
|
|
||||||
# start app
|
# start app
|
||||||
# CMD ["serve", "-s", "build"]
|
#CMD ["npm","run", "start"]
|
||||||
|
|
||||||
|
# CMD ["yarn","run", "preview"]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# set working directory
|
||||||
|
## WORKDIR /app
|
||||||
|
|
||||||
|
# add `/app/node_modules/.bin` to $PATH
|
||||||
|
##b ENV PATH /app/node_modules/.bin:$PATH
|
||||||
|
|
||||||
CMD ["npm", "start"]
|
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ services:
|
|||||||
digifi-bko:
|
digifi-bko:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
#dockerfile: docker/Dockerfile
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 6032:4173
|
- 6032:4173
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta name="description" content="WrenchBoard Agent" />
|
<meta name="description" content="WrenchBoard Agent" />
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
|
||||||
<title>WrenchBoard Agent</title>
|
<title>digiFi Back Office</title>
|
||||||
<link rel="shortcut icon" href="media/logos/favicon.ico" />
|
<link rel="shortcut icon" href="media/logos/favicon.ico" />
|
||||||
<link rel="stylesheet" id="layout-styles-anchor" href="/splash-screen.css" />
|
<link rel="stylesheet" id="layout-styles-anchor" href="/splash-screen.css" />
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "DigiFiko",
|
"name": "DigiFi-Bko",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "8.2.3",
|
"version": "8.2.3",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@@ -10,68 +10,68 @@
|
|||||||
"preview": "vite preview --host"
|
"preview": "vite preview --host"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@formatjs/intl-pluralrules": "5.2.4",
|
"@formatjs/intl-pluralrules": "5.2.12",
|
||||||
"@formatjs/intl-relativetimeformat": "11.2.4",
|
"@formatjs/intl-relativetimeformat": "11.2.12",
|
||||||
"@fortawesome/fontawesome-free": "6.1.1",
|
"@fortawesome/fontawesome-free": "6.5.2",
|
||||||
"@popperjs/core": "^2.11.6",
|
"@popperjs/core": "^2.11.8",
|
||||||
"animate.css": "4.1.1",
|
"animate.css": "4.1.1",
|
||||||
"apexcharts": "3.35.0",
|
"apexcharts": "3.49.0",
|
||||||
"axios": "1.6.5",
|
"axios": "1.6.8",
|
||||||
"bootstrap": "5.3.0",
|
"bootstrap": "5.3.3",
|
||||||
"bootstrap-icons": "^1.5.0",
|
"bootstrap-icons": "^1.11.3",
|
||||||
"chart.js": "4.3.0",
|
"chart.js": "4.4.2",
|
||||||
"clsx": "2.1.0",
|
"clsx": "2.1.1",
|
||||||
"formik": "2.2.9",
|
"formik": "2.4.5",
|
||||||
"line-awesome": "1.3.0",
|
"line-awesome": "1.3.0",
|
||||||
"nouislider": "15.5.1",
|
"nouislider": "15.7.1",
|
||||||
"prism-react-renderer": "2.0.5",
|
"prism-react-renderer": "2.3.1",
|
||||||
"prism-themes": "1.9.0",
|
"prism-themes": "1.9.0",
|
||||||
"prismjs": "1.28.0",
|
"prismjs": "1.29.0",
|
||||||
"qs": "6.10.3",
|
"qs": "6.12.1",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-apexcharts": "1.4.0",
|
"react-apexcharts": "1.4.1",
|
||||||
"react-bootstrap": "2.5.0-beta.1",
|
"react-bootstrap": "2.10.2",
|
||||||
"react-copy-to-clipboard": "5.1.0",
|
"react-copy-to-clipboard": "5.1.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-flatpickr": "^3.10.13",
|
"react-flatpickr": "^3.10.13",
|
||||||
"react-inlinesvg": "4.1.0",
|
"react-inlinesvg": "4.1.3",
|
||||||
"react-intl": "^6.4.4",
|
"react-intl": "^6.6.5",
|
||||||
"react-query": "3.38.0",
|
"react-query": "3.39.3",
|
||||||
"react-router-dom": "6.3.0",
|
"react-router-dom": "6.23.0",
|
||||||
"react-select": "^5.8.0",
|
"react-select": "^5.8.0",
|
||||||
"react-table": "^7.7.0",
|
"react-table": "^7.8.0",
|
||||||
"react-topbar-progress-indicator": "4.1.1",
|
"react-topbar-progress-indicator": "4.1.1",
|
||||||
"socicon": "3.0.5",
|
"socicon": "3.0.5",
|
||||||
"yup": "^1.0.0"
|
"yup": "^1.4.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bootstrap": "5.1.10",
|
"@types/bootstrap": "5.2.10",
|
||||||
"@types/chart.js": "2.9.37",
|
"@types/chart.js": "2.9.41",
|
||||||
"@types/jest": "29.5.2",
|
"@types/jest": "29.5.12",
|
||||||
"@types/node": "20.3.1",
|
"@types/node": "20.12.7",
|
||||||
"@types/prismjs": "1.26.0",
|
"@types/prismjs": "1.26.3",
|
||||||
"@types/qs": "6.9.7",
|
"@types/qs": "6.9.15",
|
||||||
"@types/react": "^18.2.15",
|
"@types/react": "^18.2.79",
|
||||||
"@types/react-copy-to-clipboard": "5.0.2",
|
"@types/react-copy-to-clipboard": "5.0.7",
|
||||||
"@types/react-dom": "^18.2.7",
|
"@types/react-dom": "^18.2.25",
|
||||||
"@types/react-table": "^7.7.9",
|
"@types/react-table": "^7.7.20",
|
||||||
"@types/sass-loader": "8.0.3",
|
"@types/sass-loader": "8.0.8",
|
||||||
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
||||||
"@typescript-eslint/parser": "^6.0.0",
|
"@typescript-eslint/parser": "^7.7.1",
|
||||||
"@vitejs/plugin-react-swc": "^3.3.2",
|
"@vitejs/plugin-react-swc": "^3.6.0",
|
||||||
"css-loader": "6.7.1",
|
"css-loader": "7.1.1",
|
||||||
"del": "7.0.0",
|
"del": "7.1.0",
|
||||||
"eslint": "^8.45.0",
|
"eslint": "^9.1.1",
|
||||||
"eslint-plugin-react-hooks": "^4.6.0",
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.3",
|
"eslint-plugin-react-refresh": "^0.4.6",
|
||||||
"mini-css-extract-plugin": "2.6.1",
|
"mini-css-extract-plugin": "2.9.0",
|
||||||
"remove-files-webpack-plugin": "^1.5.0",
|
"remove-files-webpack-plugin": "^1.5.0",
|
||||||
"rtlcss-webpack-plugin": "4.0.7",
|
"rtlcss-webpack-plugin": "4.0.7",
|
||||||
"sass": "1.55.0",
|
"sass": "1.75.0",
|
||||||
"sass-loader": "13.2.0",
|
"sass-loader": "14.2.1",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.4.5",
|
||||||
"vite": "^4.4.5",
|
"vite": "^5.2.10",
|
||||||
"webpack": "5.74.0",
|
"webpack": "5.91.0",
|
||||||
"webpack-cli": "5.1.4",
|
"webpack-cli": "5.1.4",
|
||||||
"webpack-rtl-plugin": "^2.0.0"
|
"webpack-rtl-plugin": "^2.0.0"
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 237 KiB After Width: | Height: | Size: 237 KiB |
|
Before Width: | Height: | Size: 674 KiB After Width: | Height: | Size: 674 KiB |
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 679 KiB After Width: | Height: | Size: 679 KiB |