File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/pages/get-started/bruno-basics Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,22 @@ Bruno can be installed via direct download or through package managers on suppor
53
53
54
54
** APT (Debian/Ubuntu)**
55
55
```bash
56
+ # Create keyrings directory
56
57
sudo mkdir -p /etc/apt/keyrings
58
+
59
+ # Update and install GPG and curl
57
60
sudo apt update && sudo apt install gpg curl
61
+
62
+ # List existing keys (optional)
58
63
sudo gpg --list-keys
64
+
65
+ # Add the Bruno repository key
59
66
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9FA6017ECABE0266 " | gpg --dearmor | sudo tee /etc/apt/keyrings/bruno.gpg > /dev/null
67
+
68
+ # Add the Bruno repository
60
69
echo "deb [ arch=amd64 signed-by=/etc/apt/keyrings/bruno.gpg] http://debian.usebruno.com/ bruno stable" | sudo tee /etc/apt/sources.list.d/bruno.list
70
+
71
+ # Update and install Bruno
61
72
sudo apt update && sudo apt install bruno
62
73
```
63
74
** Flatpak**
You can’t perform that action at this time.
0 commit comments