Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
- name: Build with mdBook
run: mdbook build doc
- name: Copy install script
run: cp install.sh doc/html
- name: Upload artifact
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
with:
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,26 @@ with a dedicated installer in every release and can be retrieved with the
following command:

```console
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/latest/download/openstack_cli-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://gtema.github.io/openstack/install.sh | sh
```

TUI can be installed similarly:

```console
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/gtema/openstack/releases/latest/download/openstack_tui-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://gtema.github.io/openstack/install.sh | INSTALLER_TOOL=openstack_tui sh
```

### Build locally
### Build and install using `cargo`

When Rust toolchain is installed it is possible to use it to install the project.

```console
cargo install openstack_cli
cargo install openstack_tui
```

### Build locally directly from sources

Alternatively it is possible to compile project from sources. Since the project
is a pure `Rust` it requires having a Rust compile suite.

Expand Down
Loading