advent22/api/.devcontainer/devcontainer.json

50 lines
2 KiB
JSON
Raw Permalink 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",
2024-03-21 22:00:45 +00:00
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/vscode/devcontainers/python:1-3.11-bookworm",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
"packages": "git-flow, git-lfs"
},
"ghcr.io/itsmechlark/features/redis-server:1": {}
},
"containerEnv": {
"TZ": "Europe/Berlin"
},
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
]
}
},
2024-03-21 22:00:45 +00:00
"postCreateCommand": "sudo /usr/local/py-utils/bin/poetry self add poetry-plugin-up",
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
}