From 5373da4c55309e0985ea799d79c8132eb0c56c1b Mon Sep 17 00:00:00 2001 From: bibi0019 <49600231+bibi0019@users.noreply.github.com> Date: Tue, 24 Mar 2026 17:04:55 +0700 Subject: [PATCH] docs: fix PM2 start command syntax (#2713) --- docs/getting-started/buildfromsource.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started/buildfromsource.mdx b/docs/getting-started/buildfromsource.mdx index e17715eb..ab4e210e 100644 --- a/docs/getting-started/buildfromsource.mdx +++ b/docs/getting-started/buildfromsource.mdx @@ -157,7 +157,7 @@ npm install -g pm2 ``` 2. Start seerr with PM2: ```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: ```bash @@ -206,7 +206,7 @@ git checkout main 3. Install the dependencies: ```powershell 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: ```powershell @@ -275,7 +275,7 @@ npm install -g pm2 ``` 2. Start seerr with PM2: ```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: ```powershell