Browse Source

Update README.md

Signed-off-by: Chester-alt <76455436+Chester-alt@users.noreply.github.com>
Chester-alt 1 month ago
parent
commit
d677a2aa93
1 changed files with 12 additions and 21 deletions
  1. 12 21
      README.md

+ 12 - 21
README.md

@@ -73,43 +73,34 @@ docker compose up -d
 
 ## Installing on Linux 
 
-## 1. Download the RackPeek binary
 ```bash
+# 1. Download the RackPeek binary
+
 wget https://github.com/Timmoth/RackPeek/releases/download/RackPeek-0.0.3/rackpeek_0_0_3_linux-x64 -O rackpeek
-```
 
-Or with curl:
+# Or with curl:
 
-```bash
 curl -L https://github.com/Timmoth/RackPeek/releases/download/RackPeek-0.0.3/rackpeek_0_0_3_linux-x64 -o rackpeek
-```
 
-## 2. Make the binary executable
-```bash
+# 2. Make the binary executable
+
 chmod +x rackpeek
-```
 
-## 3. Move RackPeek into your PATH
-This installs it system‑wide:
+# 3. Move RackPeek into your PATH
 
-```bash
 sudo mv rackpeek /usr/local/bin/rpk
-```
 
-## 4. Create the global config directory
-RackPeek expects a `config` folder **next to the binary**, so create it in `/usr/local/bin`:
+# 4. Create the global config directory
+# RackPeek expects a `config` folder **next to the binary**, so create it in `/usr/local/bin`:
 
-```bash
 sudo mkdir -p /usr/local/bin/config
-```
 
-## 5. Create the empty `config.yaml`
-```bash
+# 5. Create the empty `config.yaml`
+
 sudo touch /usr/local/bin/config/config.yaml
-```
 
-## 6. Test the installation
-```bash
+# 6. Test the installation
+
 rpk --help
 ```