From 42111e3d18fb469670054dae49349c3f1505ab8d Mon Sep 17 00:00:00 2001 From: The AliX Legend Date: Wed, 15 Dec 2021 03:42:37 +0500 Subject: [PATCH 1/3] Added instructions to install it on iOSi (#4614) * Added instructions to install it on iOS * Update ios.md Co-authored-by: Joe Previte --- docs/ios.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/ios.md diff --git a/docs/ios.md b/docs/ios.md new file mode 100644 index 000000000000..25fb14edb950 --- /dev/null +++ b/docs/ios.md @@ -0,0 +1,9 @@ + # Instructions For iOS using the power of iSH + +Install iSH From Apple AppStore First + +First Run `apk add curl` + +Run `curl -fsSL https://code-server.dev/install.sh | sh` + +Start code server using `code-server` [If not work then use `node code-server`] From 186ad8b45988629e816cf9fc81662c5651b4095e Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 14 Dec 2021 16:06:38 -0700 Subject: [PATCH 2/3] docs: add ios to manifest --- docs/manifest.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/manifest.json b/docs/manifest.json index 26d06f39457a..d883210bdb89 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -51,6 +51,11 @@ "title": "Termux", "description": "How to install Termux to run code-server on an Android device.", "path": "./termux.md" + }, + { + "title": "iOS", + "description": "How to use code-server on iOS with iSH.", + "path": "./ios.md" } ] }, From 3dc87b0a24643621c7a812202884e2e1c24fd0e4 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 14 Dec 2021 16:07:39 -0700 Subject: [PATCH 3/3] docs: clean up ios docs --- docs/ios.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/ios.md b/docs/ios.md index 25fb14edb950..d804a33c6094 100644 --- a/docs/ios.md +++ b/docs/ios.md @@ -1,9 +1,7 @@ - # Instructions For iOS using the power of iSH +# Using code-server on iOS with iSH -Install iSH From Apple AppStore First - -First Run `apk add curl` - -Run `curl -fsSL https://code-server.dev/install.sh | sh` - -Start code server using `code-server` [If not work then use `node code-server`] +1. Install iSH from the [App Store](https://apps.apple.com/us/app/ish-shell/id1436902243) +2. Install `curl` with `apk add curl` +3. Install code-server with `curl -fsSL https://code-server.dev/install.sh | sh` +4. Run code-server with `code-server` +5. Access on localhost:8080 in your browser