advent22/api/.devcontainer/devcontainer.json

39 lines
1.5 KiB
JSON
Raw Normal View History

2023-09-03 14:38:19 +00: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/python
2022-10-07 23:50:20 +00:00
{
2023-09-03 14:38:19 +00:00
"name": "Advent22 API",
"dockerComposeFile": "docker-compose.yml",
"service": "api",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
2022-10-07 23:50:20 +00:00
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
2023-09-08 14:48:48 +00:00
"python.defaultInterpreterPath": "/usr/local/bin/python",
"terminal.integrated.defaultProfile.linux": "zsh"
2022-10-07 23:50:20 +00:00
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
2023-09-03 15:57:00 +00:00
"be5invis.toml",
"mhutchie.git-graph",
2022-10-07 23:50:20 +00:00
"ms-python.python",
2023-09-03 16:37:43 +00:00
"ms-python.black-formatter",
2023-10-27 18:55:20 +00:00
"ms-python.flake8",
2023-09-03 14:38:19 +00:00
"ms-python.isort",
2023-09-03 15:57:00 +00:00
"ms-python.vscode-pylance"
2022-10-07 23:50:20 +00:00
]
}
},
2023-09-03 14:38:19 +00:00
// Use 'postStartCommand' to run commands after the container is started.
"postStartCommand": "poetry install"
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
2022-10-07 23:50:20 +00:00
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",
2023-09-03 14:38:19 +00:00
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
2022-10-07 23:50:20 +00:00
}