Is there a way to debug Julia in VS Code using the remote SSH extension?

39 views Asked by At

I am on a Linux cluster and the details of the SSH plugin can be found here.

After configuring my launch.json file, and then "Run" -> "Start Debugging", it loads for a bit (looping blue bar), but then stops and nothing happens.

Here is my .json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "address": "hpc.haastech.org",
            "localRoot": "/home/jakewren/conwel/",
            "name": "Attach to Remote",
            "port": 22,
            "remoteRoot": "/home/jakewren/conwel/",
            "request": "attach",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "type": "node"
        }
    ]
}

I have no problems running, but debugging is causing trouble.

0

There are 0 answers