diff --git a/docs/setup.en.md b/docs/setup.en.md index d5c54334b628504b6af2b8b3a796691668f8b43f..28e025521b49efd4c6cb08a3f352c875c613e9a0 100644 --- a/docs/setup.en.md +++ b/docs/setup.en.md @@ -48,11 +48,18 @@ You need to generate config file via `npm run config` command. *5.* Build Misskey ---------------------------------------------------------------- +Build misskey with the following: + +`npm run build` + If you're on Debian, you will need to install the `build-essential` package. -Then build misskey: +If you're still encountering errors about some modules, use node-gyp: -`npm run build` +1. `npm install -g node-gyp` +2. `node-gyp configure` +3. `node-gyp build` +4. `npm run build` *6.* That is it. ----------------------------------------------------------------