Skip to content

Commit

Permalink
Updates install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
prasadtalasila committed Oct 8, 2023
1 parent 16287ff commit 1990e87
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 122 deletions.
2 changes: 1 addition & 1 deletion client/script/clean.bash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
rm -rf build/ node_modules/ coverage/ playwright-report/ *.svg
rm -rf build/ node_modules/ coverage/ playwright-report/ "*.svg"
4 changes: 2 additions & 2 deletions deploy/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ docker run -d \
-p 8090:8080 \
--name "ml-workspace-user1" \
-v "${TOP_DIR}/files/user1:/workspace" \
-v "${TOP_DIR}/files/common:/workspace/common:ro" \
-v "${TOP_DIR}/files/common:/workspace/common" \
--env AUTHENTICATE_VIA_JUPYTER="" \
--env WORKSPACE_BASE_URL="user1" \
--shm-size 512m \
Expand All @@ -65,7 +65,7 @@ docker run -d \
-p 8091:8080 \
--name "ml-workspace-user2" \
-v "${TOP_DIR}/files/user2:/workspace" \
-v "${TOP_DIR}/files/common:/workspace/common:ro" \
-v "${TOP_DIR}/files/common:/workspace/common" \
--env AUTHENTICATE_VIA_JUPYTER="" \
--env WORKSPACE_BASE_URL="user2" \
--shm-size 512m \
Expand Down
3 changes: 2 additions & 1 deletion deploy/vagrant/make_boxes/dtaas/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Vagrant.configure("2") do |config|
vb.cpus = 8
end

config.vm.provision "shell", path: "provision.sh"
config.vm.provision "shell", path: "user.sh"
#config.vm.provision "shell", path: "developer.sh"
end

115 changes: 0 additions & 115 deletions deploy/vagrant/make_boxes/dtaas/provision.sh

This file was deleted.

2 changes: 1 addition & 1 deletion docs/admin/trial.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You need the following information from the OAuth application registered on Gitl
| OAuth Provider | REACT_APP_AUTH_AUTHORITY | https://gitlab.foo.com/ |
| Application ID | REACT_APP_CLIENT_ID |
| Callback URL | REACT_APP_REDIRECT_URI | https://foo.com/Library |
| Scopes | REACT_APP_GITLAB_SCOPES | openid profile read_user read_repository api |
| Scopes | REACT_APP_GITLAB_SCOPES | openid, profile, read_user, read_repository, api |

### Install

Expand Down
2 changes: 1 addition & 1 deletion servers/execution/runner/script/clean.bash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
rm -rf build node_modules coverage dist *.svg
rm -rf build node_modules coverage dist "*.svg"
2 changes: 1 addition & 1 deletion servers/lib/script/clean.bash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
rm -rf build node_modules coverage dist *.svg
rm -rf build node_modules coverage dist "*.svg"

0 comments on commit 1990e87

Please sign in to comment.