From 7aca7c8b1bee2585d72d7d2c324073784c8e71b5 Mon Sep 17 00:00:00 2001 From: RoseSecurity <72598486+RoseSecurity@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:19:48 -0500 Subject: [PATCH 1/2] Add Debian install instructions --- README.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c216fd5..d472be4 100644 --- a/README.md +++ b/README.md @@ -66,19 +66,35 @@ flowchart TD ## Installation -Homebrew installation: +### Homebrew ```sh brew install terramaid ``` -If you have a functional go environment, you can install with: +If you have a functional Go environment, you can install with: ```sh go install github.com/RoseSecurity/terramaid@latest ``` -Build from source: +### Apt + +To install packages, you can quickly setup the repository automatically: + +```sh +curl -1sLf \ + 'https://dl.cloudsmith.io/public/rosesecurity/terramaid/setup.deb.sh' \ + | sudo -E bash +``` + +Once the repository is consigured, you can install with: + +```sh +apt install terramaid +``` + +### Source ```sh git clone git@github.com:RoseSecurity/terramaid.git From 0aefe83d95865a9fa2f03066ea50c425ed7e2de6 Mon Sep 17 00:00:00 2001 From: RoseSecurity <72598486+RoseSecurity@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:21:21 -0500 Subject: [PATCH 2/2] fix docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d472be4..277934a 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ curl -1sLf \ | sudo -E bash ``` -Once the repository is consigured, you can install with: +Once the repository is configured, you can install with: ```sh apt install terramaid