-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ba3caa
commit b5b7286
Showing
1 changed file
with
6 additions
and
4 deletions.
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# Using code-server on iOS with iSH | ||
|
||
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 | ||
2. Install `curl` and `nano` with `apk add curl nano` | ||
3. Configure iSH to use an earlier version of NodeJS with `nano /etc/apk/repositories` and edit `v3.14` to `v3.12` on both repository links. | ||
4. Install `nodejs` and `npm` with `apk add nodejs npm` | ||
5. Install code-server with `curl -fsSL https://code-server.dev/install.sh | sh` | ||
6. Run code-server with `code-server` | ||
7. Access on localhost:8080 in your browser |