Skip to content

Commit

Permalink
Merge branch 'main' into add-pull-request-to-contributing
Browse files Browse the repository at this point in the history
  • Loading branch information
metadaddy authored Aug 21, 2024
2 parents e3b3868 + 2659942 commit 97ed55b
Show file tree
Hide file tree
Showing 4 changed files with 891 additions and 493 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,34 @@ release, minus 1 minor version. So, if the current stable version is `3.22.x`,
Boardwalk should work with `3.21.x`. Consider using
[`pyenv`](https://github.com/pyenv/pyenv) to maintain fresh python environment.

#### Shell Completion

To enable shell completion for `boardwalk` and `boardwalkd`, the following set
of commands will generate the completion script and add them to your shell (a
shell restart will be needed):

##### Bash
```bash
_BOARDWALK_COMPLETE=bash_source boardwalk > ~/.boardwalk-complete.bash
_BOARDWALKD_COMPLETE=bash_source boardwalkd > ~/.boardwalkd-complete.bash
echo '. ~/.boardwalk-complete.bash' >> ~/.bashrc
echo '. ~/.boardwalkd-complete.bash' >> ~/.bashrc
```

##### Zsh
```zsh
_BOARDWALK_COMPLETE=zsh_source boardwalk > ~/.boardwalk-complete.zsh
_BOARDWALKD_COMPLETE=zsh_source boardwalkd > ~/.boardwalkd-complete.zsh
echo '. ~/.boardwalk-complete.zsh' >> ~/.zshrc
echo '. ~/.boardwalkd-complete.zsh' >> ~/.zshrc
```

##### Fish
```sh
_BOARDWALK_COMPLETE=fish_source boardwalk > ~/.config/fish/completions/boardwalk.fish
_BOARDWALKD_COMPLETE=fish_source boardwalkd > ~/.config/fish/completions/boardwalkd.fish
```

#### Container Install

Boardwalk may be built as a container image by running `make container`.
Expand Down
Loading

0 comments on commit 97ed55b

Please sign in to comment.