From 40c59db66727aa24822dd9db8f2336c0a561023f Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Fri, 6 Jul 2018 11:35:23 +0200 Subject: [PATCH] Add instructions to install libsodium resolve #44 --- INSTALL.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 414696a..7c6cf3d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -30,9 +30,18 @@ If you want to do manual installations, you can use our Wiki documentations for ## Dependencies -Execute `# bundle install` to install Ruby dependencies (including Rails itself). +Execute `# bundle install` to install Ruby gems (including Rails itself). + +Execute `# yarn install` to install Javascript/NodeJS packages. + +Depending on what is already installed on your OS or not, you might need to install a few system packages to be able to have everything working. + +### libsodium + +To use elliptic curve SSH keys, we need to have `libsodium` and its headers. +* on Debian : `# apt install libsodium-dev`. +* on macOS with Homebrew : `# brew install libsodium`. -Execute `# yarn install` to install Javascript/NodeJS dependencies. ## Rails configuration