docs: fix PM2 start command syntax (#2713)

This commit is contained in:
bibi0019
2026-03-24 17:04:55 +07:00
committed by GitHub
parent 865396fd28
commit 5373da4c55

View File

@@ -157,7 +157,7 @@ npm install -g pm2
``` ```
2. Start seerr with PM2: 2. Start seerr with PM2:
```bash ```bash
pm2 start dist/index.js --name seerr --node-args="--NODE_ENV=production" NODE_ENV=production pm2 start dist/index.js --name seerr
``` ```
3. Save the process list: 3. Save the process list:
```bash ```bash
@@ -206,7 +206,7 @@ git checkout main
3. Install the dependencies: 3. Install the dependencies:
```powershell ```powershell
npm install -g win-node-env npm install -g win-node-env
set CYPRESS_INSTALL_BINARY=0 && pnpm install --frozen-lockfile $env:CYPRESS_INSTALL_BINARY = 0; pnpm install --frozen-lockfile
``` ```
4. Build the project: 4. Build the project:
```powershell ```powershell
@@ -275,7 +275,7 @@ npm install -g pm2
``` ```
2. Start seerr with PM2: 2. Start seerr with PM2:
```powershell ```powershell
pm2 start dist/index.js --name seerr --node-args="--NODE_ENV=production" $env:NODE_ENV = "production"; pm2 start dist/index.js --name seerr
``` ```
3. Save the process list: 3. Save the process list:
```powershell ```powershell