TensorRT-LLMs/.devcontainer/devcontainer.json
Lucas Liebenwein 5fc2f63fec
infra: Devcontainer productivity improvements (#3075)
* devcontainer improvements

Signed-off-by: Lucas Liebenwein <11156568+lucaslie@users.noreply.github.com>

* docker compose path

Signed-off-by: Lucas Liebenwein <11156568+lucaslie@users.noreply.github.com>

* updated some more devcontainer settings

Signed-off-by: Lucas Liebenwein <11156568+lucaslie@users.noreply.github.com>

* clean devcontainer name

Signed-off-by: Lucas Liebenwein <11156568+lucaslie@users.noreply.github.com>

---------

Signed-off-by: Lucas Liebenwein <11156568+lucaslie@users.noreply.github.com>
2025-04-03 02:23:38 +08:00

79 lines
3.4 KiB
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/docker-existing-dockerfile
{
"name": "TRT-LLM Devcontainer",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "tensorrt_llm-dev",
"remoteUser": "ubuntu",
"containerEnv": {
// "CCACHE_DIR" : "/home/coder/${localWorkspaceFolderBasename}/cpp/.ccache",
// "CCACHE_BASEDIR" : "/home/coder/${localWorkspaceFolderBasename}",
"HF_TOKEN": "${localEnv:HF_TOKEN}",
"HF_HOME": "/huggingface",
"HISTFILE": "${containerWorkspaceFolder}/.cache/._bash_history"
},
"workspaceFolder": "/workspaces/tensorrt_llm",
// "workspaceFolder": "/home/coder/${localWorkspaceFolderBasename}",
// "workspaceMount": "source=${localWorkspaceFolder},target=/home/coder/${localWorkspaceFolderBasename},type=bind,consistency=consistent",
"mounts": [
"source=${localEnv:HOME}/.cache/huggingface,target=/huggingface,type=bind", // HF cache
"source=/home/scratch.trt_llm_data/,target=/home/scratch.trt_llm_data/,type=bind,consistency=consistent"
],
// Note: sourcing .profile is required since we use a local user and the python interpreter is
// global (/usr/bin/python). In this case, pip will default to a local user path which is not
// by default in the PATH. In interactive devcontainer shells, .profile is sourced by default.
"postCreateCommand": "mkdir -p $HOME/.local/bin && source $HOME/.profile && pip install -r requirements-dev.txt && pre-commit install --install-hooks",
"customizations": {
"vscode": {
"extensions": [
// CPP
"ms-vscode.cpptools",
"llvm-vs-code-extensions.vscode-clangd",
// "xaver.clang-format",
// Python
"ms-python.python",
"eeyore.yapf",
// AutoDeploy Linting and Formatting
"charliermarsh.ruff",
// Build Tools
// "ms-azuretools.vscode-docker",
// "ms-vscode.makefile-tools",
// "ms-vscode.cmake-tools",
// Git & Github
// "GitHub.vscode-pull-request-github"
"eamodio.gitlens"
],
"settings": {
"C_Cpp.intelliSenseEngine": "disabled",
"[python]": {
"editor.defaultFormatter": "eeyore.yapf"
},
"[cpp]": {
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
// "editor.defaultFormatter": "xaver.clang-format",
},
// "clang-format.executable": "/usr/local/bin/clang-format",
"clangd.arguments": [
// "--compile-commands-dir=${workspaceFolder}/cpp/build_RelWithDebInfo"
"--compile-commands-dir=${workspaceFolder}/cpp/build"
],
"python.defaultInterpreterPath": "/usr/bin/python"
}
}
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "ubuntu",
"installZsh": true,
"installOhMyZsh": true,
"configureZshAsDefaultShell": true,
"upgradePackages": false
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest"
}
}
}