Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NB: The links are only there for your reference. The instructions on this page are sufficient for setting up arcanist for RAMCloud

 

  1. Install `arcanist` using the instructions from their website. The high level bit is to create an installation directory and clone the two repositories:

    Code Block
    mkdir -p /path/to/my/installation/directory
    git clone https://github.com/phacility/libphutil.git
    git clone https://github.com/phacility/arcanist.git	
  2.  Add `arcanist` to your `PATH`.

    Code Block
    export PATH=$PATH:/path/to/my/installation/directory/arcanist/bin
  3. Configure the project this set of instructions. First, put the following in a file called `.arcconfig` inside the ramcloud directory.

    Code Block
    {
      "phabricator.uri" : "http://b.hq6.me/"
    }
  4. Next, run <code>arc `arc install-certificate</code> certificate` from inside the ramcloud directory and follow the on-screen instructions. After you see the SUCCESS message in the terminal, your arcanist install is up and ready to go!

...