Skip to content

Commit

Permalink
鉁忥笍 Fix manual deployment doc start script typo
Browse files Browse the repository at this point in the history
Closes #969
  • Loading branch information
baptisteArno committed Oct 26, 2023
1 parent f1e3836 commit a347a27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/docs/docs/self-hosting/guides/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ If you face the issue `Node ran out of memory`, then you should increase the mem
cd apps/builder
pnpm start
# You may have to set the port if it's already in use
pnpm next start -p 3001
pnpm start -p 3001
```

2. Deploy the builder with PM2

```sh
pm2 start --name=typebot pnpm -- start
# or select a different port
pm2 start --name=typebot pnpm -- next start -p 3001
pm2 start --name=typebot pnpm -- start -p 3001
```

### Deploy the viewer
Expand All @@ -81,15 +81,15 @@ pm2 start --name=typebot pnpm -- next start -p 3001
cd apps/viewer
pnpm start
# You may have to set the port if it's already in use
pnpm next start -p 3002
pnpm start -p 3002
```

2. Deploy the viewer with PM2

```sh
pm2 start --name=typebot pnpm -- start
# or select a different port
pm2 start --name=typebot pnpm -- next start -p 3002
pm2 start --name=typebot pnpm -- start -p 3002
```

## Nginx configuration
Expand Down

0 comments on commit a347a27

Please sign in to comment.