From a6e3c7e8b297452dbd236ae3a376c230c240f78c Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Mon, 25 Nov 2024 04:14:09 -0500 Subject: [PATCH] Add install instructions for non-nix users --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index c80917c..099fd1c 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,32 @@ list of all tasks running on ECS.
Non-Nix users + +Clone the repository: + +``` +git clone https://github.com/sestrella/iecs.git +``` + +Download and [install](https://go.dev/dl/) the appropriate Go version. Check +the version constraint on the [go.mod](go.mod) to determine which version to +use. + +Compile and generate the binary: + +``` +go build +``` + +Copy the binary to a directory in the `PATH`, like `~/.local/bin`: + +``` +cp iecs ~/.local/bin/iecs +``` + +> [!NOTE] +> Check that the path where the binary is copied exists in the `PATH` +> environment variable.
## References