Skip to content

Commit

Permalink
fix(WebSocketClient): change port number to fit local setup and chang…
Browse files Browse the repository at this point in the history
…e it when using the github action
  • Loading branch information
JannisDommer committed Nov 3, 2023
1 parent 1769081 commit 038a3ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/playground_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: Set hostname for WebSocketLanguageServer
run: |
sed -i "s/languageServerHostName: .*/languageServerHostName: \"$HOSTNAME\",/" ./WebSocketClient/UVLPlayground/src/config.ts
sed -i "s/port: .*/port: 8010,/" ./WebSocketClient/UVLPlayground/src/config.ts
- name: Build
working-directory: WebSocketClient/UVLPlayground
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion WebSocketClient/UVLPlayground/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
port: 8010,
port: 30000,
languageServerHostName: "localhost",
};

0 comments on commit 038a3ad

Please sign in to comment.