Turn your fresh cloud VM into fully functional VS Code for the web with HTTPS enabled. You can work from any device as long as it supports a modern web browser.
Before running the installation commands make sure to allow inbound connections on port 80 (HTTP) and 443 (HTTPS) via your cloud virtual firewal configuration and your OS level firewall.
export CODE_DOMAIN_NAME=vscode.example.com
export CODE_PASSWORD=MyVeryLongPassword123
The CODE_PASSWORD
environment variable is optional. If you omit it, a random password will be generated.
curl -s -L https://raw.githubusercontent.com/rioastamal/installer-vscode-for-web/main/install.sh | bash -s -- --core
Command above will automatically install and configure following software packages to turn your cloud VM into Cloud IDE:
Once the installation is complete you can access your VS Code via HTTPS URL, e.g: https://vscode.example.com
. To view the password, you can check home/vscode/.config/code-server/config.yaml
on host machine.
cat /home/vscode/.config/code-server/config.yaml
- Supported Linux distributions
- Development packages
- Domain name for testing
- How to change the password?
- Roadmap
- Changelog
- Contributing
- License
Supported Linux distributions:
- AlmaLinux 9
- Amazon Linux 2023
- CentOS Stream 9
- CentOS Stream 8
- Debian 12
- Debian 11
- Debian 10
- RHEL 9
- RockyLinux 9
- Ubuntu 22.04 LTS
- Ubuntu 20.04 LTS
The list of supported Linux distributions can be expanded by emulating the OS version via the EMULATE_OS_VERSION
environment variable. You should set this environment variable before running the installation script.
- AlmaLinux 8 (use
export EMULATE_OS_VERSION=centos_8
) - RockyLinux 8 (use
export EMULATE_OS_VERSION=centos_8
)
The installer provides with optional, ready to use development packages for modern application development.
Package | CLI option |
---|---|
All packages | --dev-utils |
AWS CLI v2 | --awscli |
Bun (Javascript/TypeScript runtime) | --bunjs |
Docker | --docker |
Git | Automatically installed |
Go | --go |
Java (JDK) | --jdk |
nvm | --nvm |
Node (via nvm) | Installed via --nvm |
pip | --pip3 |
Terraform | --terraform |
Serverless Framework | --sls |
All your development activities on VS Code should take place inside the /home/vscode
directory.
To install development packages above on your VS Code terminal, run the installer command with the --dev-utils
option.
Note: If you're emulating OS version, don't forget to set
EMULATE_OS_VERSION
before running the command.
curl -s -L https://raw.githubusercontent.com/rioastamal/installer-vscode-for-web/main/install.sh | bash -s -- --dev-utils
If you prefer to install only one of these packages, such as Java, run command below:
curl -s -L https://raw.githubusercontent.com/rioastamal/installer-vscode-for-web/main/install.sh | bash -s -- --jdk
Make sure to run these commands to apply all the changes to the current shell without having to log out:
source $HOME/.bashrc
newgrp docker
If you do not have domain name for testing, you can use free DNS service mapping like nip.io which can map your VM's public IP address into domain name.
As an example, if your VM's public IP is 1.2.3.4
you can use following to map domain 1.2.3.4.nip.io
to your public IP.
export CODE_DOMAIN_NAME="$( curl -s https://api.ipify.org ).nip.io"
curl -s -L https://raw.githubusercontent.com/rioastamal/installer-vscode-for-web/main/install.sh | bash -s -- --core
Now your VS Code should be available at https://1.2.3.4.nip.io
.
Important: I recommend using your own domain name for real-world use cases. Use free DNS mapping services like these for testing purposes only.
To change your VS Code password, edit a config file located at /home/vscode/.config/code-server/config.yaml
.
bind-addr: 127.0.0.1:8080
auth: password
password: YOUR_NEW_PASSWORD_HERE
cert: false
Save the file and restart the code-server.
sudo systemctl restart code-server@vscode
Roadmap for future version:
- GitHub authentication to access VS Code
- Access local USB device from the VM
- Bug fix: Failed to detect OS version
- Bug fix: Unable to install code-server when $HOME variable is not present
- Ability to emulate OS version via
EMULATE_OS_VERSION
- A dedicated user
vscode
, is used for running VS Code. - Remove docker dependencies for running code-server and Caddy. VS Code terminal now run natively on host machine.
- Remove Amazon Linux 2, CentOS 7, and Ubuntu 18.04 from the list of supported Linux distributions due to GLIBC version compatibility issues.
- Initial public release
Fork this repo and send me a PR.
This project is licensed under MIT License.