You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: IDE_SETUP_COMMANDS.md
+67-16Lines changed: 67 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,19 +11,47 @@ The IDE setup commands allow developers to configure their development environme
11
11
- Maintain control over which extensions/plugins are available
12
12
- Work in air-gapped or restricted network environments
13
13
14
+
## Prerequisites
15
+
16
+
Before using the IDE setup commands, ensure you have the JFrog CLI installed:
17
+
18
+
```bash
19
+
# Install JFrog CLI (macOS/Linux)
20
+
curl -fL https://getcli.jfrog.io | sh && mv jfrog /usr/local/bin/
21
+
22
+
# Or with Homebrew (macOS/Linux)
23
+
brew install jfrog-cli
24
+
25
+
# Or with Chocolatey (Windows)
26
+
choco install jfrog-cli
27
+
```
28
+
29
+
For more details and installation options, see the [JFrog CLI documentation](https://jfrog.com/getcli/).
30
+
31
+
## How File Modifications Are Performed
32
+
33
+
The IDE setup commands update configuration files directly on your system. The following tools and methods are used in the background:
34
+
35
+
-**macOS/Linux:** Uses the `sed` command-line tool to modify JSON or properties files in-place.
36
+
-**Windows:** Uses PowerShell scripts to update configuration files.
37
+
-**Backup:** Before any modification, a backup of the original file is created in the same or a dedicated backup directory.
38
+
39
+
> **Note:** You must have the required permissions to modify these files. For system-wide installations, you may need to run the command with `sudo` (macOS/Linux) or as Administrator (Windows).
40
+
14
41
## Commands
15
42
16
-
### VSCode Configuration: `jf rt vscode-config`
43
+
### VSCode Configuration: `jf vscode-config`
17
44
18
45
Configures Visual Studio Code to use JFrog Artifactory for extensions.
0 commit comments