From 74d138925e3f51eb53b563516752e52973a30fbe Mon Sep 17 00:00:00 2001 From: Angristan Date: Sun, 15 Apr 2018 12:52:16 +0200 Subject: [PATCH 1/2] 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. From b7dfc239c32f5ffacabe4afb4e453b5d9572b104 Mon Sep 17 00:00:00 2001 From: Angristan Date: Sun, 15 Apr 2018 12:52:54 +0200 Subject: [PATCH 2/2] Fix list number --- docs/setup.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup.en.md b/docs/setup.en.md index f8b2f5506..ec062e947 100644 --- a/docs/setup.en.md +++ b/docs/setup.en.md @@ -58,7 +58,7 @@ 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` +4. `npm run build` *6.* That is it. ----------------------------------------------------------------