From e4bd3560908df7facc9c1dec7beeb1772b5cc568 Mon Sep 17 00:00:00 2001 From: bibi0019 <49600231+bibi0019@users.noreply.github.com> Date: Tue, 17 Mar 2026 21:00:05 +0700 Subject: [PATCH 1/3] Fix PM2 start command syntax --- docs/getting-started/buildfromsource.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/buildfromsource.mdx b/docs/getting-started/buildfromsource.mdx index e17715eb0c..bc141a5c56 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 From 35033f350a343e6139ca0f7df1cf0c0bf2d4aabe Mon Sep 17 00:00:00 2001 From: bibi0019 <49600231+bibi0019@users.noreply.github.com> Date: Sat, 21 Mar 2026 09:14:57 +0700 Subject: [PATCH 2/3] Update PM2 start command for Windows compatibility --- docs/getting-started/buildfromsource.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/buildfromsource.mdx b/docs/getting-started/buildfromsource.mdx index bc141a5c56..61b9e54907 100644 --- a/docs/getting-started/buildfromsource.mdx +++ b/docs/getting-started/buildfromsource.mdx @@ -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" +set NODE_ENV=production && pm2 start dist/index.js --name seerr ``` 3. Save the process list: ```powershell From fe9657d119d8141a3dd81169feb08b034221f1e9 Mon Sep 17 00:00:00 2001 From: bibi0019 <49600231+bibi0019@users.noreply.github.com> Date: Sun, 22 Mar 2026 11:36:14 +0700 Subject: [PATCH 3/3] Update environment variable syntax for PowerShell --- docs/getting-started/buildfromsource.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/buildfromsource.mdx b/docs/getting-started/buildfromsource.mdx index 61b9e54907..ab4e210e2b 100644 --- a/docs/getting-started/buildfromsource.mdx +++ b/docs/getting-started/buildfromsource.mdx @@ -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 -set NODE_ENV=production && pm2 start dist/index.js --name seerr +$env:NODE_ENV = "production"; pm2 start dist/index.js --name seerr ``` 3. Save the process list: ```powershell