Skip to content

Commit ee652d5

Browse files
authored
docs: explain how to install the JFrog VS Code extension (#8724)
1 parent 7447bfa commit ee652d5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docs/platforms/jfrog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,22 @@ Access token: ...
131131
Default: true
132132
```
133133

134+
## Installing the JFrog VS Code Extension
135+
136+
You can install the JFrog VS Code extension into workspaces automatically
137+
by inserting the following lines into your `startup_script`:
138+
139+
```sh
140+
# Install the JFrog VS Code extension.
141+
# Find the latest version number at
142+
# https://open-vsx.org/extension/JFrog/jfrog-vscode-extension.
143+
JFROG_EXT_VERSION=2.4.1
144+
curl -o /tmp/jfrog.vsix -L "https://open-vsx.org/api/JFrog/jfrog-vscode-extension/$JFROG_EXT_VERSION/file/JFrog.jfrog-vscode-extension-$JFROG_EXT_VERSION.vsix"
145+
/tmp/code-server/bin/code-server --install-extension /tmp/jfrog.vsix
146+
```
147+
148+
Note that this will method will only work if your developers use code-server.
149+
134150
## Configuring npm
135151

136152
Add the following line to your `startup_script` to configure `npm` to use

0 commit comments

Comments
 (0)