From cedc1ca95aaa3962774a47d1aad7d1ff5306e49f Mon Sep 17 00:00:00 2001 From: Nina Breznik Date: Thu, 22 Mar 2018 23:42:16 +0000 Subject: [PATCH 1/3] Update README.md --- README.md | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 050aeb4080..eb01d7b15f 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,9 @@ Or if you want to clone the github repository (`wget` need to be installed first ```bash git clone https://github.com/ethereum/remix-ide.git cd remix-ide +git run setupremix npm install -npm run build && npm run serve +npm start ``` ## DEVELOPING: @@ -44,21 +45,6 @@ Then open your `text editor` and start developing. The browser will automatically refresh when files are saved. Most of the the time working with other modules (like debugger etc.) hosted in the [Remix repository](https://github.com/ethereum/remix) is not needed. -But in case changes have to be made in that repository too, the following command will help you link Remix with your local remix-ide repository: - -After `npm install` run also: - -```bash -npm run pullremix - -npm run linkremixcore - -npm run linkremixlib - -npm run linkremixsolidity - -npm run linkremixdebugger -``` ### Troubleshooting building From bcc1858cba720da246a50ca3719ec28531043879 Mon Sep 17 00:00:00 2001 From: Nina Breznik Date: Thu, 12 Apr 2018 22:01:30 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb01d7b15f..ab6a4e4d50 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Or if you want to clone the github repository (`wget` need to be installed first ```bash git clone https://github.com/ethereum/remix-ide.git cd remix-ide -git run setupremix +npm run setupremix // this will install github.com/ethereum/remix repository and link it to remix-ide npm install npm start ``` From c3371a880c9f868f9cd2e7a60a05a6ab4ef29790 Mon Sep 17 00:00:00 2001 From: Nina Breznik Date: Thu, 12 Apr 2018 22:07:36 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab6a4e4d50..a141daa4a9 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Or if you want to clone the github repository (`wget` need to be installed first ```bash git clone https://github.com/ethereum/remix-ide.git cd remix-ide -npm run setupremix // this will install github.com/ethereum/remix repository and link it to remix-ide +npm run setupremix # this will clone https://github.com/ethereum/remix for you and link it to remix-ide npm install npm start ```