Skip to content

Commit c9d6404

Browse files
docs: updated README
1 parent 4db01e8 commit c9d6404

1 file changed

Lines changed: 20 additions & 2 deletions

File tree

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,35 @@ The official command-line interface for [CreateOS](https://createos.nodeops.netw
1414

1515
## Installation
1616

17-
### Stable (recommended)
17+
### macOS & Linux — install script (recommended)
1818

1919
```sh
2020
curl -sfL https://raw.githubusercontent.com/NodeOps-app/createos-cli/main/install.sh | sh -
2121
```
2222

23+
### macOS & Linux — Homebrew
24+
25+
```sh
26+
brew tap nodeops-app/tap
27+
brew install createos
28+
```
29+
2330
### Nightly
2431

2532
Built daily from the latest commit on `main`. May contain unreleased features.
2633

2734
```sh
35+
# Install script
2836
curl -sfL https://raw.githubusercontent.com/NodeOps-app/createos-cli/main/install.sh | CREATEOS_CHANNEL=nightly sh -
37+
38+
# Homebrew
39+
brew install createos --HEAD
2940
```
3041

3142
### Pin a specific version
3243

3344
```sh
34-
curl -sfL https://raw.githubusercontent.com/NodeOps-app/createos-cli/main/install.sh | CREATEOS_VERSION=v0.1.0 sh -
45+
curl -sfL https://raw.githubusercontent.com/NodeOps-app/createos-cli/main/install.sh | CREATEOS_VERSION=v0.0.3 sh -
3546
```
3647

3748
### Upgrade
@@ -40,6 +51,12 @@ curl -sfL https://raw.githubusercontent.com/NodeOps-app/createos-cli/main/instal
4051
createos upgrade
4152
```
4253

54+
Or via Homebrew:
55+
56+
```sh
57+
brew upgrade createos
58+
```
59+
4360
### Build from source
4461

4562
Requires Go 1.21+.
@@ -228,6 +245,7 @@ createos --help
228245
| Command | Description |
229246
| --------------------- | ------------------------------------------------------- |
230247
| `createos ask` | Ask the AI assistant to help manage your infrastructure |
248+
| `createos upgrade` | Upgrade createos to the latest version |
231249
| `createos version` | Print the current version |
232250

233251
## Non-interactive / CI usage

0 commit comments

Comments
 (0)