From f2df583d8b6d85055a8a0b1c95ab3a769d271bba Mon Sep 17 00:00:00 2001 From: Angristan Date: Sun, 15 Apr 2018 12:52:16 +0200 Subject: [PATCH] Add node-gyp instructions to build the crypto module Otherwise misskey can't run. --- docs/setup.en.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/setup.en.md b/docs/setup.en.md index 88e20f6bc..f8b2f5506 100644 --- a/docs/setup.en.md +++ b/docs/setup.en.md @@ -53,6 +53,11 @@ Or you can generate config file via `npm run config` command. *5.* Build Misskey ---------------------------------------------------------------- +We need to use `node-gyp` to build the `crypto` module. + +1. `npm install -g node-gyp` +2. `node-gyp configure` +3. `node-gyp build` 1. `npm run build` *6.* That is it.