File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ npm install -g pm2
157157```
1581582 . Start seerr with PM2:
159159``` bash
160- pm2 start dist/index.js --name seerr --node-args= " --NODE_ENV=production "
160+ NODE_ENV=production pm2 start dist/index.js --name seerr
161161```
1621623 . Save the process list:
163163``` bash
@@ -206,7 +206,7 @@ git checkout main
2062063 . Install the dependencies:
207207``` powershell
208208npm install -g win-node-env
209- set CYPRESS_INSTALL_BINARY=0 && pnpm install --frozen-lockfile
209+ $env: CYPRESS_INSTALL_BINARY = 0; pnpm install --frozen-lockfile
210210```
2112114 . Build the project:
212212``` powershell
@@ -275,7 +275,7 @@ npm install -g pm2
275275```
2762762 . Start seerr with PM2:
277277``` powershell
278- pm2 start dist/index.js --name seerr --node-args="--NODE_ENV=production"
278+ $env:NODE_ENV = "production"; pm2 start dist/index.js --name seerr
279279```
2802803 . Save the process list:
281281``` powershell
You can’t perform that action at this time.
0 commit comments