Skip to content

Commit

Permalink
changed feault env value
Browse files Browse the repository at this point in the history
  • Loading branch information
st-vi committed Oct 18, 2023
1 parent baff7ae commit 3766362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WebSocketClient/UVLPlayground/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const startPythonClient = async () => {

// create the web socket and configure to start the language client on open, can add extra parameters to the url if needed.
createWebSocket(createUrl(
process.env.UVLS_HOST_NAME === undefined ? 'localhost' : process.env.UVLS_HOST_NAME,
process.env.UVLS_HOST_NAME === undefined ? 'http://590c9306-8ced-48f6-85f2-bb8caa1bfd52.ul.bw-cloud-instance.org/' : process.env.UVLS_HOST_NAME,
process.env.PORT === undefined ? 30000 : parseInt(process.env.PORT),
'/pyright', {
// Used to parse an auth token or additional parameters such as import IDs to the language server
Expand Down
2 changes: 1 addition & 1 deletion WebSocketClient/deployment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ docker kill uvl-playground-website
docker rm uvl-playground-website

docker build -t uvl-playground-website .
docker run --name uvl-playground-website -d -p 80:80 -e PORT=30000 -e UVLS_HOST_NAME=http://590c9306-8ced-48f6-85f2-bb8caa1bfd52.ul.bw-cloud-instance.org/ -t uvl-playground-website
docker run --name uvl-playground-website -d -p 80:80 -t uvl-playground-website

0 comments on commit 3766362

Please sign in to comment.