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