Switch to unified view

a b/.devcontainer/devcontainer.json
1
{
2
    "name": "nfcore",
3
    "image": "nfcore/gitpod:latest",
4
    "remoteUser": "gitpod",
5
    "runArgs": ["--privileged"],
6
7
    // Configure tool-specific properties.
8
    "customizations": {
9
        // Configure properties specific to VS Code.
10
        "vscode": {
11
            // Set *default* container specific settings.json values on container create.
12
            "settings": {
13
                "python.defaultInterpreterPath": "/opt/conda/bin/python"
14
            },
15
16
            // Add the IDs of extensions you want installed when the container is created.
17
            "extensions": ["ms-python.python", "ms-python.vscode-pylance", "nf-core.nf-core-extensionpack"]
18
        }
19
    }
20
}