Skip to content

Commit e646f99

Browse files
committed
redirect log
1 parent d52a6c9 commit e646f99

File tree

4 files changed

+56
-3
lines changed

4 files changed

+56
-3
lines changed

.github/workflows/pull-integration-cluster-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
k3d kubeconfig get k3dCluster > tests/integration/fixtures/kubeconfig.yaml
5252
export CYPRESS_DOMAIN=http://localhost:3001
53-
npm run start &
53+
npm run start > busola.log &
5454
5555
echo "waiting for server to be up..."
5656
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$CYPRESS_DOMAIN")" != "200" ]]; do sleep 5; done

.github/workflows/pull-integration-namespace-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
k3d kubeconfig get k3dCluster > tests/integration/fixtures/kubeconfig.yaml
5252
export CYPRESS_DOMAIN=http://localhost:3001
53-
npm run start &
53+
npm run start > busola.log &
5454
5555
echo "waiting for server to be up..."
5656
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$CYPRESS_DOMAIN")" != "200" ]]; do sleep 5; done

.github/workflows/pull-lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
k3d kubeconfig get k3dCluster > tests/lighthouse/fixtures/kubeconfig.yaml
4646
export DOMAIN=http://localhost:3001
47-
npm run start &
47+
npm run start > busola.log &
4848
4949
echo "waiting for server to be up..."
5050
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$DOMAIN")" != "200" ]]; do sleep 5; done

busola.log

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
> @kyma-project/busola@0.0.1-rc.8 start
3+
> concurrently -c cyan,green npm:busola npm:backend
4+
5+
[busola]
6+
[busola] > @kyma-project/busola@0.0.1-rc.8 busola
7+
[busola] > npm run copy-themes; BROWSER=none GENERATE_SOURCEMAP=false vite
8+
[busola]
9+
[backend]
10+
[backend] > @kyma-project/busola@0.0.1-rc.8 backend
11+
[backend] > cd backend && npm run start
12+
[backend]
13+
[busola]
14+
[busola] > @kyma-project/busola@0.0.1-rc.8 copy-themes
15+
[busola] > cp node_modules/@sap-theming/theming-base-content/content/Base/baseLib/sap_horizon/css_variables.css public/themes/@sap-theming/default.css; for theme in hcb dark hcw ; do cp node_modules/@sap-theming/theming-base-content/content/Base/baseLib/sap_horizon_$theme/css_variables.css public/themes/@sap-theming/$theme.css ; done
16+
[busola]
17+
[backend]
18+
[backend] > backend@1.0.0 start
19+
[backend] > SSL_CERT_FILE=certs.pem NODE_ENV=development nodemon --exec babel-node index.js
20+
[backend]
21+
[backend] [nodemon] 2.0.22
22+
[backend] [nodemon] to restart at any time, enter `rs`
23+
[backend] [nodemon] watching path(s): *.*
24+
[backend] [nodemon] watching extensions: js,mjs,json
25+
[backend] [nodemon] starting `babel-node index.js`
26+
[busola] Forced re-optimization of dependencies
27+
[busola] [vite-plugin-static-copy] Collected 1 items.
28+
[busola]
29+
[busola] VITE v5.4.3 ready in 1274 ms
30+
[busola]
31+
[busola] ➜ Local: http://localhost:8080/
32+
[busola] ➜ Network: use --host to expose
33+
[backend] node:events:496
34+
[backend] throw er; // Unhandled 'error' event
35+
[backend] ^
36+
[backend]
37+
[backend] Error: listen EADDRINUSE: address already in use 0.0.0.0:3001
38+
[backend] at Server.setupListenHandle [as _listen2] (node:net:1897:16)
39+
[backend] at listenInCluster (node:net:1945:12)
40+
[backend] at doListen (node:net:2109:7)
41+
[backend] at processTicksAndRejections (node:internal/process/task_queues:83:21)
42+
[backend] Emitted 'error' event on Server instance at:
43+
[backend] at emitErrorNT (node:net:1924:8)
44+
[backend] at processTicksAndRejections (node:internal/process/task_queues:82:21) {
45+
[backend] code: 'EADDRINUSE',
46+
[backend] errno: -98,
47+
[backend] syscall: 'listen',
48+
[backend] address: '0.0.0.0',
49+
[backend] port: 3001
50+
[backend] }
51+
[backend]
52+
[backend] Node.js v20.12.1
53+
[backend] [nodemon] app crashed - waiting for file changes before starting...

0 commit comments

Comments
 (0)