1
0
Fork 0
openapi-pydantic/.devcontainer/devcontainer.json
Daniel Baumann 97e6d74bac
Adding upstream version 0.5.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-04 22:22:32 +02:00

23 lines
507 B
JSON

{
"name": "openapi-pydantic",
"image": "mcr.microsoft.com/devcontainers/python:0-3.11",
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:2": {
"version": "latest"
}
},
"containerEnv": {
"POETRY_VIRTUALENVS_IN_PROJECT": "true"
},
"postCreateCommand": "poetry install && pip install --upgrade tox",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff"
]
}
}
}