summaryrefslogtreecommitdiff
path: root/docs/setup.en.md
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2019-07-14 10:04:52 +0900
committerAcid Chicken (硫酸鶏) <root@acid-chicken.com>2019-07-14 10:04:52 +0900
commitb3e5198f236333b84c8de96d4e997f0485265156 (patch)
tree1a15ff4935d5d6943b8e4d0402bb665bd957ae33 /docs/setup.en.md
parentRevert "Docker: Back to npm from yarn (#4730)" (diff)
downloadsharkey-b3e5198f236333b84c8de96d4e997f0485265156.tar.gz
sharkey-b3e5198f236333b84c8de96d4e997f0485265156.tar.bz2
sharkey-b3e5198f236333b84c8de96d4e997f0485265156.zip
Use yarn instead of npm
Diffstat (limited to 'docs/setup.en.md')
-rw-r--r--docs/setup.en.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/setup.en.md b/docs/setup.en.md
index 9bfa70f51c..885c8c8a48 100644
--- a/docs/setup.en.md
+++ b/docs/setup.en.md
@@ -50,7 +50,7 @@ Please install and setup these softwares:
5. Install misskey dependencies.
- `npm install`
+ `npx yarn install`
*4.* Configure Misskey
----------------------------------------------------------------
@@ -130,7 +130,7 @@ You can check if the service is running with `systemctl status misskey`.
### How to update your Misskey server to the latest version
1. `git checkout master`
2. `git pull`
-3. `npm install`
+3. `npx yarn install` or `yarn install`
4. `NODE_ENV=production npm run build`
5. `npm run migrate`
6. Restart your Misskey process to apply changes
@@ -138,7 +138,7 @@ You can check if the service is running with `systemctl status misskey`.
If you encounter any problems with updating, please try the following:
1. `npm run clean` or `npm run cleanall`
-2. Retry update (Don't forget `npm i`)
+2. Retry update (Don't forget `npx yarn install` or `yarn install`)
----------------------------------------------------------------