You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/code-server/README.md

1.4 KiB

display_name description icon
code-server VS Code in the browser ../icons/code.svg

code-server

Run VS Code on any machine anywhere and access it in the browser.

Screenshot 1 Screenshot 2

Highlights

  • Code on any device with a consistent development environment
  • Use cloud servers to speed up tests, compilations, downloads, and more
  • Preserve battery life when you're on the go; all intensive tasks run on your server

Examples

Extensions

Automatically install extensions from OpenVSX:

module "code-server" {
    source = "https://registry.coder.com/modules/code-server"
    extensions = [
        "
    ]
}

Enter the <author>.<name> into the extensions array and code-server will automatically install on start.

Settings

Pre-configure code-server with settings:

module "settings" {
    source = "https://registry.coder.com/modules/code-server"
    extensions = [ "dracula-theme.theme-dracula" ]
    settings = {
        "workbench.colorTheme" = "Dracula"
    }
}

Offline Mode

Just run code-server in the background, don't fetch it from GitHub:

module "settings" {
    source = "https://registry.coder.com/modules/code-server"
    offline = true
}