-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nvmrc and instructions to install node
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18.18.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,13 @@ git clone [email protected]:tkhq/frames.git | |
cd frames/ | ||
``` | ||
|
||
Install dependencies | ||
Install Node: | ||
```sh | ||
nvm use | ||
``` | ||
(the command above installs the version specified in `.nvmrc`, but any Node version >= v18 should do) | ||
|
||
Install dependencies: | ||
```sh | ||
cd recovery && npm install | ||
cd export && npm install | ||
|