Browse Source

Add node version and firefox notes to local setup doc (#1683)

pull/1688/head
Rachael Booth 2 years ago committed by GitHub
parent
commit
ae364b66f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      docs/setup.md

16
docs/setup.md

@ -16,6 +16,8 @@ Dependencies:
We recommend using [RBenv](https://github.com/rbenv/rbenv) to manage Ruby versions. We recommend using [RBenv](https://github.com/rbenv/rbenv) to manage Ruby versions.
We recommend using [nvm](https://github.com/nvm-sh/nvm) to manage NodeJS versions.
1. Install PostgreSQL 1. Install PostgreSQL
macOS: macOS:
@ -70,12 +72,14 @@ We recommend using [RBenv](https://github.com/rbenv/rbenv) to manage Ruby versio
5. Install JavaScript dependencies 5. Install JavaScript dependencies
macOS: Note that we currently use node v16, which is no longer the latest LTS version so you will need to specify the version number when installing
```bash macOS (using nvm):
brew install node ```bash
brew install yarn nvm install 16
``` nvm use 16
brew install yarn
```
Linux (Debian): Linux (Debian):
@ -167,6 +171,8 @@ We recommend using [RBenv](https://github.com/rbenv/rbenv) to manage Ruby versio
```bash ```bash
bundle exec rspec bundle exec rspec
``` ```
Note that these tests assume you have firefox installed.
## Using Docker ## Using Docker

Loading…
Cancel
Save