1
0
Fork 0
openapi-pydantic/.devcontainer/devcontainer.json

24 lines
507 B
JSON
Raw Normal View History

{
"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"
]
}
}
}