Skip to content

Commit

Permalink
include mamba as requirement repo for dev setup (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhelmus authored Sep 20, 2024
1 parent d3a1f50 commit 634cda8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/dev/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
The development workflow is streamlined for Linux thanks to the `devcontainer` configuration
bundled in this repository. You'll need Docker and VS Code with the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers):

1. Clone `conda/conda` and `conda/conda-libmamba-solver` to your preferred locations
(e.g. `~/devel/conda` and `~/devel/conda-libmamba-solver`, respectively).
The location does not matter as long as both repositories have the same parent directory.
1. Clone `conda/conda`, `mamba-org/mamba` and `conda/conda-libmamba-solver` to your preferred locations
(e.g. `~/devel/conda`, `~/devel/mamba` and `~/devel/conda-libmamba-solver`, respectively).
The location does not matter as long as all repositories have the same parent directory.
2. Open your `conda-libmamba-solver` clone with VS Code.
3. Connect to the DevContainer image via the bottom-left menu (<kbd>❱❰</kbd>) and
click on "Reopen in Container". Pick one of the suggested configurations:
Expand All @@ -31,9 +31,8 @@ If you are modifying C++ sources, re-run `develop-mamba` to rebuild the librarie

You can reuse the devcontainer scripts with regular Docker too.

1. Clone `conda/conda` and `conda/conda-libmamba-solver` to your preferred locations
(e.g. `~/devel/conda` and `~/devel/conda-libmamba-solver`, respectively).
You should also clone `mamba-org/mamba` if you need to develop `libmamba`.
1. Clone `conda/conda`, `mamba-org/mamba` and `conda/conda-libmamba-solver` to your preferred locations
(e.g. `~/devel/conda`, `~/devel/mamba` and `~/devel/conda-libmamba-solver`, respectively).
The location does not matter as long as all repositories have the same parent directory.
2. Start a new Docker instance with this command. Adjust the local mounts as necessary.

Expand Down
19 changes: 19 additions & 0 deletions news/528-include-mamba-as-required-repo-for-dev-setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Enhancements

* <news item>

### Bug fixes

* <news item>

### Deprecations

* <news item>

### Docs

* Include mamba-org/mamba as a required cloned repository for setting up a dev environment. (#528)

### Other

* <news item>

0 comments on commit 634cda8

Please sign in to comment.