Skip to content

Commit 0a0777a

Browse files
committed
added comments
1 parent 764806c commit 0a0777a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/pages/get-started/bruno-basics/download.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,22 @@ Bruno can be installed via direct download or through package managers on suppor
5353

5454
**APT (Debian/Ubuntu)**
5555
```bash
56+
# Create keyrings directory
5657
sudo mkdir -p /etc/apt/keyrings
58+
59+
# Update and install GPG and curl
5760
sudo apt update && sudo apt install gpg curl
61+
62+
# List existing keys (optional)
5863
sudo gpg --list-keys
64+
65+
# Add the Bruno repository key
5966
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
6069
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
6172
sudo apt update && sudo apt install bruno
6273
```
6374
**Flatpak**

0 commit comments

Comments
 (0)