diff options
| author | Angristan <Angristan@users.noreply.github.com> | 2018-06-01 20:52:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-01 20:52:47 +0200 |
| commit | 8d78ee08c111b09479484c53e63fb32a1721b848 (patch) | |
| tree | 034d72de4f2587cb28cdcd176316029f5534b36d /docs/setup.en.md | |
| parent | Update build docs (diff) | |
| download | sharkey-8d78ee08c111b09479484c53e63fb32a1721b848.tar.gz sharkey-8d78ee08c111b09479484c53e63fb32a1721b848.tar.bz2 sharkey-8d78ee08c111b09479484c53e63fb32a1721b848.zip | |
Cover multiple cases
Diffstat (limited to 'docs/setup.en.md')
| -rw-r--r-- | docs/setup.en.md | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/setup.en.md b/docs/setup.en.md index d5c54334b6..28e025521b 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. ---------------------------------------------------------------- |