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
Copy file name to clipboardExpand all lines: docs/getting-started.md
+54-17Lines changed: 54 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,15 @@
1
-
# zed
1
+
<!-- markdownlint-disable-next-line MD041 -->
2
+
import { Callout } from 'nextra/components'
2
3
3
-
## Getting Started
4
+
#Installing Zed
4
5
5
-
### Installing the binary
6
+
[Zed](https://github.com/authzed/zed) is the CLI used to interact with SpiceDB.
6
7
7
-
Binary releases are available for Linux, macOS, and Windows on AMD64 and ARM64 architectures.
8
+
It is built as a standalone executable file which simplifies installation, but one should prefer one of the recommended installation methods detailed below.
8
9
9
-
[Homebrew] users for both macOS and Linux can install the latest binary releases of zed using the official tap:
10
+
## Debian packages
10
11
11
-
```sh
12
-
brew install authzed/tap/zed
13
-
```
14
-
15
-
[Debian-based Linux] users can install zed packages by adding a new APT source:
12
+
[Debian-based Linux] users can install SpiceDB packages by adding an additional apt source.
16
13
17
14
First, download the public signing key for the repository:
18
15
@@ -28,12 +25,11 @@ Then add the list file for the repository:
28
25
```sh
29
26
echo"deb [signed-by=/etc/apt/keyrings/authzed.gpg] https://pkg.authzed.com/apt/ * *"| sudo tee /etc/apt/sources.list.d/authzed.list
30
27
sudo chmod 644 /etc/apt/sources.list.d/authzed.list # helps tools such as command-not-found to work correctly
31
-
32
28
```
33
29
34
30
Alternatively, if you want to use the new `deb822`-style `authzed.sources` format, put the following in `/etc/apt/sources.list.d/authzed.sources`:
35
31
36
-
```yaml
32
+
```sh
37
33
Types: deb
38
34
URIs: https://pkg.authzed.com/apt/
39
35
Suites: *
@@ -48,23 +44,40 @@ sudo apt update
48
44
sudo apt install -y zed
49
45
```
50
46
51
-
[RPM-based Linux] users can install zed packages by adding a new YUM repository:
0 commit comments