-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Centralized install of Fox, expounded on Docker, Git and kind installs
- Loading branch information
Showing
5 changed files
with
103 additions
and
80 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
nav: | ||
- index.md | ||
- quickstart.md | ||
- tutorials | ||
- fox-cli.md |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Install the Fox CLI | ||
|
||
The Fox CLI ("Fox") is a tool used to interact with KubeFox and prepare your Apps | ||
for deployment and release. | ||
|
||
=== "Install using Go" | ||
|
||
```{ .shell .copy } | ||
go install github.com/xigxog/fox@latest | ||
``` | ||
|
||
=== "Install using Bash" | ||
|
||
```{ .shell .copy } | ||
curl -sL "https://github.com/xigxog/fox/releases/latest/download/fox-$(uname -s | tr 'A-Z' 'a-z')-amd64.tar.gz" | \ | ||
tar xvz - -C /tmp && \ | ||
sudo mv /tmp/fox /usr/local/bin/fox | ||
``` | ||
|
||
=== "Install Manually" | ||
|
||
Download the [latest Fox release](https://github.com/xigxog/fox/releases/latest){:target="_blank"} for your OS and extract the `fox` binary to a directory on your path. | ||
|
||
You can check the version of Fox with ```fox version```. | ||
|
||
If you were running the Quickstart, you can return to it by clicking **[here](./quickstart.md#prerequisites)**. | ||
|
||
If you were running the KubeFox and Hasura Tutorial, you can return to it by clicking **[here](./tutorials/graphql.md#prerequisites)**. |
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