Skip to content

Simon-Bru/scala-sbt-vscode-remote-container

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scala-sbt-vscode-remote-container

A remote container for working with Scala in Visual Studio Code without package installation/configuration headache

Services installation

You can install following dependency managers:

Corporate proxy

INFO: To workaround corporate VPN; you must have some kind of proxy setup on your machine (ex: Cntlm). That proxy must be running to run the development container.

To enable proxy usage for the remote env, add the following args to devcontainer.json:

  1. "HTTP_PROXY_HOST": "host.docker.internal". This is the default proxy that docker uses internally.
  2. "HTTP_PROXY_PORT": "3128"

You also need to specify those settings for VSCode's metals extension:

"http.proxy": "http://host.docker.internal:3128",
"metals.serverProperties": [
    "-Dhttps.proxyHost=host.docker.internal",
    "-Dhttps.proxyPort=3128",
    "-Dhttp.proxyHost=host.docker.internal",
    "-Dhttp.proxyPort=3128"
],

About

A remote container for working with Scala in Visual Studio Code without package installation/configuration headache

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published