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
## Summary
- Fixed small issue in readme from last release
- added missing commands from CLI to vscode extension's command palette
(install, update, search)
Q: should I add more devbox commands? e.g., global, info, version, auth,
etc.
## How was it tested?
- vsce package
- code --install <generated-devbox>.vsix
- open a project with devbox.json
- cmd+shift+p and type devbox
- confirm install, update and search exists in the list of available
commands and try them.
Copy file name to clipboardExpand all lines: vscode-extension/README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,6 @@ This is the official VSCode extension for [devbox](https://github.com/jetpack-io
8
8
9
9
If a Devbox Cloud instance (from [devbox.sh](https://devbox.sh)) has an `Open In Desktop` button, this extension will make VSCode to be able to connect its workspace to the instance.
10
10
11
-
NOTE: Requires devbox CLI v0.5.5 and above
12
-
installed and in PATH. This feature is in beta. Please report any bugs/issues in [Github](https://github.com/jetpack-io/devbox) or our [Discord](https://discord.gg/Rr5KPJq7).
13
-
14
11
### Auto Shell on a devbox project
15
12
16
13
When VSCode Terminal is opened on a devbox project, this extension detects `devbox.json` and runs `devbox shell` so terminal is automatically in devbox shell environment. Can be turned off in settings.
@@ -24,6 +21,9 @@ If the opened workspace in VSCode has a devbox.json file, from command palette,
24
21
3. Interact with Devbox CLI to setup a devbox shell.
25
22
4. Close current VSCode window and reopen it in a devbox shell environment as if VSCode was opened from a devbox shell terminal.
26
23
24
+
NOTE: Requires devbox CLI v0.5.5 and above
25
+
installed and in PATH. This feature is in beta. Please report any bugs/issues in [Github](https://github.com/jetpack-io/devbox) or our [Discord](https://discord.gg/Rr5KPJq7).
26
+
27
27
### Run devbox commands from command palette
28
28
29
29
`cmd/ctrl + shift + p` opens vscode's command palette. Typing devbox filters all available commands devbox extension can run. Those commands are:
@@ -33,6 +33,9 @@ If the opened workspace in VSCode has a devbox.json file, from command palette,
33
33
-**Remove:** Removes a package from devbox.json
34
34
-**Shell:** Opens a terminal and runs devbox shell
35
35
-**Run:** Runs a script from devbox.json if specified
36
+
-**Install** Install packages specified in devbox.json
37
+
-**Update** Update packages specified in devbox.json
38
+
-**Search** Search for packages to add to your devbox project
36
39
-**Generate DevContainer files:** Generates devcontainer.json & Dockerfile inside .devcontainers directory. This allows for running vscode in a container or GitHub Codespaces.
37
40
-**Generate a Dockerfile from devbox.json:** Generates a Dockerfile a project's root directory. This allows for running the devbox project in a container.
38
41
-**Reopen in Devbox shell environment:** Allows projects with devbox.json
0 commit comments