-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- todo section - update asdf instructions
- Loading branch information
1 parent
3f6a7c9
commit 61e19be
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,7 +203,6 @@ To help with that, the [commitizen](https://commitizen-tools.github.io/commitize | |
```bash | ||
# install cz | ||
npm install -g commitizen cz-conventional-changelog | ||
brew install commitizen | ||
# make repo cz friendly | ||
commitizen init cz-conventional-changelog --save-dev --save-exact | ||
|
@@ -245,30 +244,31 @@ [email protected], [email protected] | |
|
||
### Additional tooling | ||
|
||
Additional tooling includes but is not limited to: | ||
#### TODO | ||
|
||
* Add [devbox](https://www.jetpack.io/devbox/) 👌 | ||
|
||
#### asdf | ||
|
||
* Install [asdf](https://asdf-vm.com/guide/getting-started.html#_2-download-asdf) | ||
* Usage | ||
* Add plugins | ||
```bash | ||
# add python plugin | ||
asdf plugin-add python | ||
asdf plugin-add poetry https://github.com/asdf-community/asdf-poetry.git | ||
asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git | ||
``` | ||
* Usage | ||
* Install local plugins in repo | ||
```bash | ||
asdf install | ||
``` | ||
* Install specific plugins | ||
```bash | ||
# install stable python | ||
asdf install python <latest|3.11.4> | ||
# set stable to system python | ||
asdf global python latest | ||
# add poetry asdf plugin | ||
asdf plugin-add poetry https://github.com/asdf-community/asdf-poetry.git | ||
# install latest version via asdf | ||
asdf install poetry <latest|1.5.1> | ||
# set latest version as default | ||
asdf global poetry latest | ||
``` | ||
|
||
#### shellcheck | ||
|