Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node version information #702

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14.19.2
36 changes: 29 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,43 @@ Note: The Portis wallet option is not available when running locally

## Installation

**Available Scripts**
### `yarn start`
### Confirm node version

Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
This repo currently uses **Node v14.19.2**.

The page will reload if you make edits.<br />
You will also see any lint errors in the console.
If you have Node Version Manager (nvm) installed, you can run

```sh
nvm use
```

to switch versions, and

**Install Dependencies and Start the Application**
```sh
node --version
```

to confirm.

### Install dependencies

```sh
yarn
```

### Start the application

```sh
yarn start
```

Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br />
You will also see any lint errors in the console.


## Development workflow

By default, `dev` acts as the primary base branch which all PRs should merge into. Make sure any pull requests target this branch.
Expand Down