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
You can install the Render CLI using Homebrew by running the following commands:
10
-
11
-
```sh
12
-
brew tap render-oss/homebrew-render
13
-
brew update
14
-
brew install render
15
-
```
16
-
17
-
### Building from source
18
-
19
-
To build the Render CLI from source, you will need to have Go installed on your machine. You can install Go by following the [Go installation instructions](https://golang.org/doc/install).
20
-
21
-
Once you have Go installed, you can build the Render CLI by running the following commands:
22
-
23
-
```sh
24
-
git clone git@github.com:render-oss/cli.git
25
-
cd cli
26
-
go build -o render
27
-
```
28
-
29
-
This will create a binary called `render` in the current directory. You can move this binary to a directory in your `PATH` to make it easier to use.
30
-
31
-
### Downloading a pre-built binary
32
-
33
-
Pre-built binaries for the Render CLI are available on the [Releases page](https://github.com/render-oss/cli/releases/) of this repository. You can download the binary for your platform and move it to a directory in your `PATH` to make it easier to use.
The CLI expects an API key to be set in the `RENDER_API_KEY` environment variable. You can generate an API key from your [user settings page](https://dashboard.render.com/u/settings#api-keys).
8
+
## Documentation
38
9
10
+
Documentation is hosted at https://render.com/docs/cli
0 commit comments