VS Code on iPad Pro: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 48: | Line 48: | ||
[Service] | [Service] | ||
User= | User=ubuntu | ||
Group= | Group=ubuntu | ||
WorkingDirectory=/home/ | WorkingDirectory=/home/ubuntu | ||
Environment="PATH=/usr/bin" | Environment="PATH=/usr/bin" | ||
ExecStart=/ | ExecStart=/home/ubuntu/.yarn/bin/code-server | ||
[Install] | [Install] |
Revision as of 06:18, 2 April 2022
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm -g install yarn
yarn global add code-server
~/.yarn/bin/code-server
| |
| |
vim ~/.config/code-server/config.yaml | |
| |
bind-addr: 127.0.0.1:8080
auth: none
password: academia
cert: false
|
bind-addr: 127.0.0.1:8080
auth: password
password: academia
cert: false
|
| |
sudo vim /etc/systemd/system/code-server.service [Unit]
Description=code-server
After=network.target
[Service]
User=ubuntu
Group=ubuntu
WorkingDirectory=/home/ubuntu
Environment="PATH=/usr/bin"
ExecStart=/home/ubuntu/.yarn/bin/code-server
[Install]
WantedBy=multi-user.target
sudo systemctl disabled code-server.service sudo systemctl enabled code-server.service sudo systemctl status code-server.service sudo systemctl start code-server.service sudo systemctl stop code-server.service blink » config » Hosts » New Host » SSH Config » New Host » Save # Compression no LocalForward 8080 127.0.0.1:8080 ExitOnForwardFailure yes |
Knowledge
sudo npm install -g --unsafe-perm=true --allow-root curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - curl -fsSL https://rpm.nodesource.com/setup_14.x | sudo bash -