28 lines
1.1 KiB
JSON
28 lines
1.1 KiB
JSON
// 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
|
|
{
|
|
"name": "searchme",
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
"image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye",
|
|
"features": {
|
|
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
|
|
},
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand": "./.devcontainer/postCreateCommand.sh",
|
|
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["ms-python.python", "editorconfig.editorconfig"],
|
|
"settings": {
|
|
"python.testing.pytestArgs": ["tests"],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.defaultInterpreterPath": "/workspaces/searchme/.venv/bin/python",
|
|
"python.testing.pytestPath": "/workspaces/searchme/.venv/bin/pytest"
|
|
}
|
|
}
|
|
}
|
|
}
|