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
Added references to IDE documentation for dev containers along with a small note about why one may choose to do development using a dev container. (#14014)
Copy file name to clipboardExpand all lines: docs/source/contributor-guide/getting_started.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,18 @@ git-bash.exe
30
30
cargo build
31
31
```
32
32
33
+
## Dev Container setup
34
+
35
+
DataFusion has support for [dev containers](https://containers.dev/) which may be used for
36
+
developing DataFusion in an isolated environment either locally or remote if desired. Using dev containers for developing
37
+
DataFusion is not a requirement by any means but is available for those where doing local development could be tricky
38
+
such as with Windows and WSL2, those with older hardware, etc.
39
+
40
+
For specific details on IDE support for dev containers see the documentation for [Visual Studio Code](https://code.visualstudio.com/docs/devcontainers/containers),
0 commit comments