From b51ca57ca750066ea88da910eab6891f77bd4209 Mon Sep 17 00:00:00 2001 From: The AliX Legend Date: Sun, 12 Dec 2021 17:20:03 +0500 Subject: [PATCH 1/2] Added instructions to install it on iOS --- docs/ios.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/ios.md diff --git a/docs/ios.md b/docs/ios.md new file mode 100644 index 000000000000..e7e04ff645b8 --- /dev/null +++ b/docs/ios.md @@ -0,0 +1,22 @@ + # Instructions For iOS using the power of iSH + +Install iSH From Apple AppStore First + +Install NodeJS, Curl And Yarn Using `apk add nodejs npm yarn curl’ + +Install NVM [NodeJS Version Manager]: + ``` + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash + ``` + +Close and reopen the app + +Run + ``` + nvm install 14 + nvm use 14 + ``` + +Run `npm i code-server` + +Start code server using `code-server` [If not work then use `node code-server`] From 533d04079ff4f3e310a3dd958f6b63414fc308c5 Mon Sep 17 00:00:00 2001 From: The AliX Legend Date: Sun, 12 Dec 2021 17:41:14 +0500 Subject: [PATCH 2/2] Update ios.md --- docs/ios.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/docs/ios.md b/docs/ios.md index e7e04ff645b8..25fb14edb950 100644 --- a/docs/ios.md +++ b/docs/ios.md @@ -2,21 +2,8 @@ Install iSH From Apple AppStore First -Install NodeJS, Curl And Yarn Using `apk add nodejs npm yarn curl’ +First Run `apk add curl` -Install NVM [NodeJS Version Manager]: - ``` - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash - ``` - -Close and reopen the app - -Run - ``` - nvm install 14 - nvm use 14 - ``` - -Run `npm i code-server` +Run `curl -fsSL https://code-server.dev/install.sh | sh` Start code server using `code-server` [If not work then use `node code-server`]