File tree 2 files changed +28
-0
lines changed
2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Running code-server using UserLAnd
2
+
3
+ 1 . Install UserLAnd from [ Google Play] ( https://play.google.com/store/apps/details?id=tech.ula&hl=en_US&gl=US )
4
+ 2 . Install an Ubuntu VM
5
+ 3 . Start app
6
+ 4 . Install Node.js, ` curl ` and ` yarn ` using ` sudo apt install nodejs npm yarn curl -y `
7
+ 5 . Install ` nvm ` :
8
+
9
+ ``` shell
10
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
11
+ ```
12
+
13
+ 6 . Exit the terminal using ` exit ` and then reopen the terminal
14
+ 7 . Install and use Node.js 14:
15
+
16
+ ``` shell
17
+ nvm install 14
18
+ nvm use 14
19
+ ```
20
+
21
+ 8 . Install code-server globally on device with: ` npm i -g code-server `
22
+ 9 . Run code-server with ` code-server `
23
+ 10 . Access on localhost:8080 in your browser
Original file line number Diff line number Diff line change 56
56
"title" : " iOS" ,
57
57
"description" : " How to use code-server on iOS with iSH." ,
58
58
"path" : " ./ios.md"
59
+ },
60
+ {
61
+ "title" : " Android" ,
62
+ "description" : " How to run code-server on an Android device using UserLAnd." ,
63
+ "path" : " ./android.md"
59
64
}
60
65
]
61
66
},
You can’t perform that action at this time.
0 commit comments