github.com/pfcoder/quorum@v2.0.3-0.20180501191142-d4a1b0958135+incompatible/BUILDING.md (about)

     1  
     2  # Building Quorum
     3  
     4  Clone the repository and build the source:
     5  
     6  ```
     7  git clone https://github.com/jpmorganchase/quorum.git
     8  cd quorum
     9  make all
    10  make test
    11  ```
    12  
    13  Binaries are placed within `./build/bin`, most notably `geth` and `bootnode`. Either add this directory to your `$PATH` or copy those two bins into your PATH:
    14  
    15  ```sh
    16  # assumes that /usr/local/bin is in your PATH
    17  cp ./build/bin/geth ./build/bin/bootnode /usr/local/bin/
    18  ```