summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBatuhan Taskaya <isidentical@gmail.com>2022-05-09 09:01:59 +0300
committerBatuhan Taskaya <isidentical@gmail.com>2022-05-09 09:01:59 +0300
commitf09e7564e7ea874f37d8b5462830b3cc66284ede (patch)
treee4e141f5ffadb3f1398faaecb9278c6a71b97fd9
parentdc5274e491b48d8294d530eb12186df28bf9d1b7 (diff)
Standalone binary documentation.
-rw-r--r--docs/README.md15
-rw-r--r--docs/installation/methods.yml13
2 files changed, 28 insertions, 0 deletions
diff --git a/docs/README.md b/docs/README.md
index 364e0a85..c06d987c 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -215,6 +215,21 @@ $ pacman -Syu httpie
$ pacman -Syu
```
+#### Single Binary Executables
+
+Have a standalone HTTPie executable, when you don't want to go through the full installatin process.
+
+```bash
+# Install httpie
+$ https --download packages.httpie.io/binaries/linux/http-latest -o http
+$ chmod +X ./http
+```
+
+```bash
+# Upgrade httpie
+$ https --download packages.httpie.io/binaries/linux/http-latest -o http
+```
+
### FreeBSD
#### FreshPorts
diff --git a/docs/installation/methods.yml b/docs/installation/methods.yml
index 79c78e3a..990af16a 100644
--- a/docs/installation/methods.yml
+++ b/docs/installation/methods.yml
@@ -23,6 +23,7 @@ docs-structure:
- dnf
- yum
- pacman
+ - single-binary
FreeBSD:
- pkg
@@ -181,3 +182,15 @@ tools:
- yum install httpie
upgrade:
- yum upgrade httpie
+
+ single-binary:
+ title: Single Binary Executables
+ name: Single Binary Executables
+ note: Have a standalone HTTPie executable, when you don't want to go through the full installatin process.
+ links:
+ commands:
+ install:
+ - https --download packages.httpie.io/binaries/linux/http-latest -o http
+ - chmod +X ./http
+ upgrade:
+ - https --download packages.httpie.io/binaries/linux/http-latest -o http