-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small docusaurus and install docs updates (#35)
* updated docusaurus settings * updated install docs
- Loading branch information
1 parent
28fc0ef
commit 31643ba
Showing
5 changed files
with
39 additions
and
22 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ sidebar_label: Installation | |
|
||
## Overview | ||
|
||
Hauler is a purpose built to be a single binary with no specific prerequistes, depedencies, or runtime environment. It's installation is very simple and easy to follow. To view the latest release, please view our [GitHub Release](https://github.com/hauler-dev/hauler/releases) page. | ||
Hauler is a purpose built to be a single binary with no prerequistes, depedencies, or runtime environment. It's installation is very simple and easy to follow. To view the latest release, please view our [GitHub Release](https://github.com/hauler-dev/hauler/releases) page. | ||
|
||
## Supported Architectures | ||
|
||
|
@@ -25,15 +25,25 @@ Hauler is a purpose built to be a single binary with no specific prerequistes, d | |
curl -sfL https://get.hauler.dev | bash | ||
|
||
# install specific release | ||
curl -sfL https://get.hauler.dev | HAULER_VERSION=1.0.0 bash | ||
curl -sfL https://get.hauler.dev | HAULER_VERSION=1.1.0 bash | ||
|
||
# install at different directory | ||
curl -sfL https://get.hauler.dev | HAULER_INSTALL_DIR=/usr/bin bash | ||
|
||
# install with debug mode | ||
curl -sfL https://get.hauler.dev | HAULER_DEBUG=true bash | ||
``` | ||
|
||
### Homebrew | ||
|
||
```bash | ||
# installs latest release | ||
# install latest release | ||
brew tap hauler-dev/homebrew-tap | ||
brew install hauler | ||
|
||
# install specific release | ||
brew tap hauler-dev/homebrew-tap | ||
brew install [email protected] | ||
``` | ||
|
||
### Windows | ||
|
@@ -47,13 +57,13 @@ brew install hauler | |
### Linux/Darwin | ||
|
||
```bash | ||
# set the hauler version (i.e. "1.0.0") | ||
# set the hauler version (i.e. HAULER_VERSION=1.1.0) | ||
export vHauler=HAULER_VERSION | ||
|
||
# set the specific platform (i.e. "linux") | ||
# set the specific platform (i.e. PLATFORM=linux) | ||
export platform=PLATFORM | ||
|
||
# set the specific arch (i.e. "amd64") | ||
# set the specific arch (i.e. ARCH=amd64) | ||
export arch=ARCH | ||
|
||
curl -sOL https://github.com/hauler-dev/hauler/releases/download/v${vHauler}/hauler_${vHauler}_${platform}_${arch}.tar.gz | ||
|
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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ sidebar_label: Installation | |
|
||
## Overview | ||
|
||
Hauler is a purpose built to be a single binary with no specific prerequistes, depedencies, or runtime environment. It's installation is very simple and easy to follow. To view the latest release, please view our [GitHub Release](https://github.com/hauler-dev/hauler/releases) page. | ||
Hauler is a purpose built to be a single binary with no prerequistes, depedencies, or runtime environment. It's installation is very simple and easy to follow. To view the latest release, please view our [GitHub Release](https://github.com/hauler-dev/hauler/releases) page. | ||
|
||
## Supported Architectures | ||
|
||
|
@@ -25,15 +25,25 @@ Hauler is a purpose built to be a single binary with no specific prerequistes, d | |
curl -sfL https://get.hauler.dev | bash | ||
|
||
# install specific release | ||
curl -sfL https://get.hauler.dev | HAULER_VERSION=1.0.0 bash | ||
curl -sfL https://get.hauler.dev | HAULER_VERSION=1.1.0 bash | ||
|
||
# install at different directory | ||
curl -sfL https://get.hauler.dev | HAULER_INSTALL_DIR=/usr/bin bash | ||
|
||
# install with debug mode | ||
curl -sfL https://get.hauler.dev | HAULER_DEBUG=true bash | ||
``` | ||
|
||
### Homebrew | ||
|
||
```bash | ||
# installs latest release | ||
# install latest release | ||
brew tap hauler-dev/homebrew-tap | ||
brew install hauler | ||
|
||
# install specific release | ||
brew tap hauler-dev/homebrew-tap | ||
brew install [email protected] | ||
``` | ||
|
||
### Windows | ||
|
@@ -47,13 +57,13 @@ brew install hauler | |
### Linux/Darwin | ||
|
||
```bash | ||
# set the hauler version (i.e. "1.0.0") | ||
# set the hauler version (i.e. HAULER_VERSION=1.1.0) | ||
export vHauler=HAULER_VERSION | ||
|
||
# set the specific platform (i.e. "linux") | ||
# set the specific platform (i.e. PLATFORM=linux) | ||
export platform=PLATFORM | ||
|
||
# set the specific arch (i.e. "amd64") | ||
# set the specific arch (i.e. ARCH=amd64) | ||
export arch=ARCH | ||
|
||
curl -sOL https://github.com/hauler-dev/hauler/releases/download/v${vHauler}/hauler_${vHauler}_${platform}_${arch}.tar.gz | ||
|
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