You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The STACKIT CLI is available to download and install through the [Homebrew](https://brew.sh/) package manager.
6
+
7
+
1. First, you need to register the [STACKIT tap](https://github.com/stackitcloud/homebrew-tap) via:
8
+
9
+
```shell
10
+
brew tap stackitcloud/tap
11
+
```
12
+
13
+
2. You can then install the CLI via:
14
+
15
+
```shell
16
+
brew install stackit-cli
17
+
```
18
+
19
+
## Linux
20
+
21
+
We will soon distribute the STACKIT CLI via [Snap](https://snapcraft.io/). For the moment, you can either install via [Homebrew](https://brew.sh/) or refer to the [manual installation](#manual-installation) guide.
22
+
23
+
## Windows
24
+
25
+
We will soon distribute the STACKIT CLI via [Chocolatey](https://chocolatey.org/). For the moment, please refer to the [manual installation](#manual-installation) guide.
26
+
27
+
## Manual installation
28
+
29
+
Alternatively, you can get the STACKIT CLI by downloading a pre-compiled binary or compiling it from source.
30
+
31
+
### Pre-compiled binary
32
+
33
+
1. Download the binary corresponding to your operating system and CPU architecture from our [Releases](https://github.com/stackitcloud/stackit-cli/releases) page
34
+
2. Extract the contents of the file to your file system and move it to your preferred location (e.g. your home directory)
35
+
3. (For macOS only) Right click on the executable, select "Open". You will see a dialog stating the identity of the developer cannot be confirmed. Click on "Open" to allow the app to run on your Mac. We soon plan to certificate the STACKIT CLI to be trusted by macOS
36
+
37
+
### Compile from source
38
+
39
+
1. Clone the repository
40
+
2. Build the application locally by running:
41
+
42
+
```bash
43
+
$ make build
44
+
```
45
+
46
+
To use the application from the root of the repository, you can run:
Copy file name to clipboardExpand all lines: README.md
+1-27Lines changed: 1 addition & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,33 +7,7 @@ Your feedback is appreciated!
7
7
8
8
## Installation
9
9
10
-
To get started using it, you can:
11
-
12
-
1. Download the binary corresponding to your operating system and CPU architecture
13
-
2. Extract the contents of the file to your file system and move it to your preferred location (e.g. your home directory)
14
-
3. (For macOS only) Right click on the executable, select "Open". You will see a dialog stating the identity of the developer cannot be confirmed. Click on "Open" to allow the app to run on your Mac. We soon plan to certificate the STACKIT CLI to be trusted by macOS
15
-
16
-
Alternatively, you can use the STACKIT CLI by cloning the repository and either:
17
-
18
-
1. Build the application locally by running:
19
-
20
-
```bash
21
-
$ go build -o ./bin/stackit
22
-
```
23
-
24
-
To use the application from the root of the repository, you can run:
0 commit comments