Files
py-ailbl-user-email/.devcontainer/devcontainer.json

50 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2025-12-02 20:45:11 +07:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
{
2025-12-06 05:58:48 +07:00
"name": "fission:ailbl-user-email",
2025-12-02 20:45:11 +07:00
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
// "image": "mcr.microsoft.com/devcontainers/rust:0-1-bullseye",
// Use docker compose file
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"python.formatting.provider": "black",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black"
},
"extensions": [
// VS Code specific
2025-12-06 05:58:48 +07:00
"ms-azuretools.vscode-docker",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
2025-12-02 20:45:11 +07:00
// Python specific
2025-12-06 05:58:48 +07:00
"ms-python.python",
"ms-python.black-formatter",
2025-12-02 20:45:11 +07:00
// C++ specific
2025-12-06 05:58:48 +07:00
"ms-vscode.cpptools",
"twxs.cmake",
2025-12-02 20:45:11 +07:00
// Markdown specific
2025-12-06 05:58:48 +07:00
"yzhang.markdown-all-in-one",
2025-12-02 20:45:11 +07:00
// YAML formatter
"kennylong.kubernetes-yaml-formatter",
// hightlight and format `pyproject.toml`
"tamasfe.even-better-toml"
]
}
},
2025-12-06 05:58:48 +07:00
"mounts": [],
2025-12-02 20:45:11 +07:00
// "runArgs": [
// "--env-file",
// ".devcontainer/.env"
// ],
"postStartCommand": "/workspaces/${localWorkspaceFolderBasename}/.devcontainer/initscript.sh",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": []
2025-12-06 05:58:48 +07:00
}