From 439a4f7a242b79441e6017ce8962859749f8d313 Mon Sep 17 00:00:00 2001 From: Morgan Metz <68765538+Morgandri1@users.noreply.github.com> Date: Tue, 21 Nov 2023 10:05:03 -0500 Subject: [PATCH 1/5] Add MacOS install instructions to readme --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 778f7a9e..268a442d 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,32 @@ $ ./injectived.sh Voila! You have now successfully setup a full node on the Injective Chain. +If you'd like to install injectived for toolchain use on MacOS, here are the steps: +1. Build from source +```bash +git clone https://github.com/OpenDeFiFoundation/injective-core.git +cd injective-core +make install +``` + +2. update ``.zshrc`` - Add these lines to your ``~/.zshrc`` file: + ```bash + export GOPATH=$HOME/go + export PATH=$PATH:$(go env GOPATH)/bin + export GOPRIVATE=github.com/InjectiveLabs/injective-core + ``` + +3. refresh your ``~/.zshrc`` file + ```bash + source ~/.zshrc + ``` + +4. Test to make sure its working + ```bash + injectived version + ``` + + ## Generating the module specification docs ```bash $ cd docs && yarn && yarn run serve From 54cccd8eb8a6bb6ad941cd1bd7f5c584daa587a3 Mon Sep 17 00:00:00 2001 From: Morgan Metz <68765538+Morgandri1@users.noreply.github.com> Date: Tue, 21 Nov 2023 10:05:41 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 268a442d..c55d2456 100644 --- a/README.md +++ b/README.md @@ -44,13 +44,13 @@ $ ./injectived.sh Voila! You have now successfully setup a full node on the Injective Chain. -If you'd like to install injectived for toolchain use on MacOS, here are the steps: +### Install for MacOS 1. Build from source -```bash -git clone https://github.com/OpenDeFiFoundation/injective-core.git -cd injective-core -make install -``` + ```bash + git clone https://github.com/OpenDeFiFoundation/injective-core.git + cd injective-core + make install + ``` 2. update ``.zshrc`` - Add these lines to your ``~/.zshrc`` file: ```bash From 6c2c1a69a34e61ee0c887f80cbed28d5ba048178 Mon Sep 17 00:00:00 2001 From: Morgan Metz <68765538+Morgandri1@users.noreply.github.com> Date: Wed, 22 Nov 2023 22:16:41 -0500 Subject: [PATCH 3/5] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c55d2456..92919012 100644 --- a/README.md +++ b/README.md @@ -45,21 +45,23 @@ $ ./injectived.sh Voila! You have now successfully setup a full node on the Injective Chain. ### Install for MacOS +Note: for any mention of ZSH, replace it with Bash if applicable. for example, `~/.bashrc` + 1. Build from source ```bash - git clone https://github.com/OpenDeFiFoundation/injective-core.git + git clone https://github.com/InjectiveLabs/injective-core.git cd injective-core make install ``` -2. update ``.zshrc`` - Add these lines to your ``~/.zshrc`` file: +2. Update `.zshrc` - Add these lines to your `~/.zshrc` file: ```bash export GOPATH=$HOME/go export PATH=$PATH:$(go env GOPATH)/bin export GOPRIVATE=github.com/InjectiveLabs/injective-core ``` -3. refresh your ``~/.zshrc`` file +3. Refresh your `~/.zshrc` file ```bash source ~/.zshrc ``` @@ -69,7 +71,6 @@ Voila! You have now successfully setup a full node on the Injective Chain. injectived version ``` - ## Generating the module specification docs ```bash $ cd docs && yarn && yarn run serve From c8995be4271b532914fc0bd8a8b8a14db3f3e6c6 Mon Sep 17 00:00:00 2001 From: Morgan Metz <68765538+Morgandri1@users.noreply.github.com> Date: Thu, 23 Nov 2023 12:43:59 -0500 Subject: [PATCH 4/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 92919012..ce63a08c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Note: for any mention of ZSH, replace it with Bash if applicable. for example, ` 1. Build from source ```bash - git clone https://github.com/InjectiveLabs/injective-core.git + git clone https://github.com/OpenDeFiFoundation/injective-core.git cd injective-core make install ``` @@ -58,7 +58,7 @@ Note: for any mention of ZSH, replace it with Bash if applicable. for example, ` ```bash export GOPATH=$HOME/go export PATH=$PATH:$(go env GOPATH)/bin - export GOPRIVATE=github.com/InjectiveLabs/injective-core + export GOPRIVATE=github.com/OpenDeFiFoundation/injective-core ``` 3. Refresh your `~/.zshrc` file From 9e97259ede0da74ab0bd7aff81f8107a45c41e56 Mon Sep 17 00:00:00 2001 From: Morgan Metz <68765538+Morgandri1@users.noreply.github.com> Date: Sat, 13 Jan 2024 16:17:03 -0500 Subject: [PATCH 5/5] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ce63a08c..c8ddb60e 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,6 @@ Note: for any mention of ZSH, replace it with Bash if applicable. for example, ` ```bash export GOPATH=$HOME/go export PATH=$PATH:$(go env GOPATH)/bin - export GOPRIVATE=github.com/OpenDeFiFoundation/injective-core ``` 3. Refresh your `~/.zshrc` file