We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa282fa commit c2110deCopy full SHA for c2110de
apps/editor/scripts/after_install.sh
@@ -3,6 +3,4 @@ NVM_BIN_PATH="/home/ubuntu/.nvm/versions/node/v22.21.0/bin"
3
4
export PATH="$NVM_BIN_PATH:$PATH"
5
6
-cd /home/ubuntu/application || exit 1
7
-
8
-pnpm install
+pnpm install --production
apps/editor/scripts/start_server.sh
@@ -22,7 +22,7 @@ fi
22
echo ">>> Blue Port: $CURRENT_BLUE_PORT"
23
echo ">>> Green Port (New Server): $GREEN_PORT"
24
25
-PORT=$GREEN_PORT pm2 start "node server.js" --name "app-$GREEN_PORT"
+PORT=$GREEN_PORT pm2 start "./server.js" --name "app-$GREEN_PORT"
26
27
pm2 save
28
0 commit comments