From e25fe654a225cfd7dcd6db91cb5f2c0398b8599f Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:04:17 -0400 Subject: [PATCH 1/2] create: .nvmrc (nvm config file) --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 00000000..2de67cec --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +14.19.2 From 950e4b64fa3ba2bf6c233dc6db7933842b52b993 Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:04:43 -0400 Subject: [PATCH 2/2] update: README with node version information update local environment setup instructions --- README.md | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c005bdad..40ad1daf 100644 --- a/README.md +++ b/README.md @@ -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.
-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.
-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.
+Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.
+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.