Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,32 @@ $ ./injectived.sh

Voila! You have now successfully setup a full node on the Injective Chain.

### Install for MacOS
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:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or .bashrc for people with bash

```bash
export GOPATH=$HOME/go
export PATH=$PATH:$(go env GOPATH)/bin
export GOPRIVATE=github.com/InjectiveLabs/injective-core
```

3. refresh your ``~/.zshrc`` file
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again or bashrc

```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
Expand Down