From ca41edea22bbef6d3832f93ee865bc6f1f151879 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Thu, 9 Jun 2022 17:39:07 -0400 Subject: [PATCH] Update npm install command --- backend/README.md | 4 ++-- frontend/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/README.md b/backend/README.md index f29ef0eee..f9a783b44 100644 --- a/backend/README.md +++ b/backend/README.md @@ -77,13 +77,13 @@ Query OK, 0 rows affected (0.00 sec) #### Build -_Make sure to use Node.js 16.15 and npm 7._ +_Make sure to use Node.js 16.10 and npm 7._ Install dependencies with `npm` and build the backend: ``` cd backend -npm install # add --prod for production +npm install npm run build ``` diff --git a/frontend/README.md b/frontend/README.md index edccba7a2..ec5b6921b 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -34,7 +34,7 @@ $ npm run config:defaults:bisq ### 3. Run the Frontend -_Make sure to use Node.js 16.15 and npm 7._ +_Make sure to use Node.js 16.10 and npm 7._ Install project dependencies and run the frontend server: @@ -71,13 +71,13 @@ Set up the [Mempool backend](../backend/) first, if you haven't already. ### 1. Build the Frontend -_Node.js 16 and npm 7 are recommended._ +_Make sure to use Node.js 16.10 and npm 7._ Build the frontend: ``` cd frontend -npm install # add --prod for production +npm install npm run build ```