File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1
1
# v3
2
2
For Misskey v13 production and later RC (since 13.0.0-rc.10)
3
3
4
+ ## v3.1.0
5
+ Node.js v20をインストールするように変更しました。
6
+
7
+ アップデート前にNode.jsのアップデートを行う必要があります。
8
+
9
+ まず、次のコマンドでv20をインストールします。
10
+
11
+ ```
12
+ curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
13
+ sudo apt install -y nodejs
14
+ ```
15
+
16
+ 次に、Misskeyをインストールしたディレクトリに移動し、npmモジュールの更新作業を行います。
17
+
18
+ ```
19
+ sudo -su misskey
20
+ cd misskey
21
+ pnpm i --frozen-lockfile --force
22
+ ```
23
+
24
+ あとは、通常通りアップデートスクリプトを実行します。
25
+
4
26
## v3.0.0
5
27
- pnpmを使用するようになったため追従
6
28
特にマイグレーションは必要ありません。アップデートスクリプトを更新してご利用ください。
Original file line number Diff line number Diff line change 1
- # Misskey install shell script v3.0 .0
1
+ # Misskey install shell script v3.1 .0
2
2
Install Misskey with one shell script!
3
3
4
4
You can install misskey on an Ubuntu server just by answering some questions.
Original file line number Diff line number Diff line change 1
- # Misskey install shell script v3.0 .0
1
+ # Misskey install shell script v3.1 .0
2
2
3
3
Misskeyを簡単にインストールするためのシェルスクリプトができました!
4
4
Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ if [ $method == "systemd" ]; then
547
547
tput setaf 3;
548
548
echo " Process: prepare node.js;"
549
549
tput setaf 7;
550
- curl -sL https://deb.nodesource.com/setup_18 .x | sudo -E bash -;
550
+ curl -sL https://deb.nodesource.com/setup_20 .x | sudo -E bash -;
551
551
else
552
552
tput setaf 3;
553
553
echo " Process: prepare docker;"
You can’t perform that action at this time.
0 commit comments