Updated
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
DIGIFI_PORT=5173
|
APP_PORT=8096
|
||||||
|
|
||||||
# Social Links
|
# Social Links
|
||||||
FACEBOOK_URL=https://www.facebook.com
|
FACEBOOK_URL=https://www.facebook.com
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
DIGIFI_PORT=5173
|
APP_PORT=8096
|
||||||
|
|
||||||
# Social Links
|
# Social Links
|
||||||
VITE_FACEBOOK_URL=https://www.facebook.com
|
VITE_FACEBOOK_URL=https://www.facebook.com
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
DIGIFI_PORT=5173
|
APP_PORT=8096
|
||||||
|
|
||||||
# Social Links
|
# Social Links
|
||||||
FACEBOOK_URL=https://www.facebook.com
|
FACEBOOK_URL=https://www.facebook.com
|
||||||
|
|||||||
+4
-3
@@ -1,6 +1,6 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
edutoken-www:
|
mermsoffice-www:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
@@ -9,9 +9,10 @@ services:
|
|||||||
- ./:/app
|
- ./:/app
|
||||||
- '/app/node_modules'
|
- '/app/node_modules'
|
||||||
ports:
|
ports:
|
||||||
- 7076:5173
|
- ${APP_PORT}:3000
|
||||||
expose:
|
expose:
|
||||||
- "5173"
|
- "5173"
|
||||||
|
- "3000"
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
- digifi-apidev.chiefsoft.net:10.10.33.15
|
- digifi-apidev.chiefsoft.net:10.10.33.15
|
||||||
- backend.wrenchboard.api.test:10.10.33.15
|
- backend.wrenchboard.api.test:10.10.33.15
|
||||||
@@ -27,4 +28,4 @@ networks:
|
|||||||
driver: bridge
|
driver: bridge
|
||||||
ipam:
|
ipam:
|
||||||
config:
|
config:
|
||||||
- subnet: 172.11.56.0/24
|
- subnet: 172.15.56.0/24
|
||||||
Generated
+6
-6
@@ -9,8 +9,8 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cra-template": "1.2.0",
|
"cra-template": "1.2.0",
|
||||||
"react": "19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "19.0.0",
|
"react-dom": "^19.0.0",
|
||||||
"react-scripts": "5.0.1"
|
"react-scripts": "5.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -16132,9 +16132,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "5.7.3",
|
"version": "4.9.5",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
|
||||||
"integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
|
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"peer": true,
|
"peer": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -16142,7 +16142,7 @@
|
|||||||
"tsserver": "bin/tsserver"
|
"tsserver": "bin/tsserver"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14.17"
|
"node": ">=4.2.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/unbox-primitive": {
|
"node_modules/unbox-primitive": {
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@ import React from 'react';
|
|||||||
import ReactDOM from 'react-dom/client';
|
import ReactDOM from 'react-dom/client';
|
||||||
import './index.css';
|
import './index.css';
|
||||||
import App from './App';
|
import App from './App';
|
||||||
import reportWebVitals from './reportWebVitals';
|
// import reportWebVitals from './reportWebVitals';
|
||||||
|
|
||||||
const root = ReactDOM.createRoot(document.getElementById('root'));
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
||||||
root.render(
|
root.render(
|
||||||
@@ -14,4 +14,4 @@ root.render(
|
|||||||
// If you want to start measuring performance in your app, pass a function
|
// If you want to start measuring performance in your app, pass a function
|
||||||
// to log results (for example: reportWebVitals(console.log))
|
// to log results (for example: reportWebVitals(console.log))
|
||||||
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
||||||
reportWebVitals();
|
// reportWebVitals();
|
||||||
|
|||||||
Reference in New Issue
Block a user