Skip to content

Commit

Permalink
doc: update node/ruby versions in contribution guide (#435)
Browse files Browse the repository at this point in the history
* doc: update node version in ubuntu contrib guide

* Update mac-os.md

* Update ubuntu.md

* Update windows.md

* Update requirements.md
  • Loading branch information
vishnu-narayanan committed Aug 18, 2023
1 parent d330111 commit c431a46
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/mac-os.md
Expand Up @@ -54,10 +54,10 @@ rbenv install 3.2.2

### Install Node.js

Install Node.js from NodeSoure using the following commands
Chatwoot requires `node` version `16`. Install Node.js from NodeSoure using the following commands

```bash
brew install node
brew install node@16
```

### Install yarn
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/ubuntu.md
Expand Up @@ -47,10 +47,10 @@ rvm use 3.2.2 --default

### Install Node.js

Install Node.js from NodeSource using the following commands:
Chatwoot requires `node` version `16`. Install Node.js from NodeSource using the following commands:

```bash
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
```

Expand Down
4 changes: 2 additions & 2 deletions docs/contributing-guide/environment-setup/windows.md
Expand Up @@ -40,10 +40,10 @@ ruby -v

### Install Node.js

Install `Node.js` from NodeSource using the following commands
Chatwoot requires `node` version `16. Install `Node.js` from NodeSource using the following commands

```bash
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
```

Expand Down
4 changes: 2 additions & 2 deletions docs/self-hosted/deployment/requirements.md
Expand Up @@ -23,15 +23,15 @@ Chatwoot is developed for Linux-based operating systems. Please consider using a

### Ruby versions

- Ruby 3.0 and later is required.
- Ruby 3.2 and later is required.

You must use the standard MRI implementation of Ruby. Chatwoot needs several Gems that have native extensions.

### Node.js versions

We only support Node.js 10.13.0 or higher.

We recommend Node 14.x, as it's faster.
We recommend Node 16.x, as it's faster.

Chatwoot uses [webpack](https://webpack.js.org/) to compile frontend assets, which requires a minimum
version of Node.js 10.13.0.
Expand Down

0 comments on commit c431a46

Please sign in to comment.