Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/getting-started/buildfromsource.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
gauthier-th marked this conversation as resolved.
```
3. Save the process list:
```bash
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading