assistance-engine/.devcontainer/devcontainer.json

26 lines
619 B
JSON

{
"name": "brunix-assistance-engine",
"dockerComposeFile": "../docker-compose.yaml",
"service": "brunix-engine",
"workspaceFolder": "/workspace",
"remoteUser": "root",
"runArgs": [
"--add-host",
"host.docker.internal:host-gateway"
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.debugpy",
"astral-sh.ruff",
"ms-python.black-formatter",
"njpwerner.autodocstring"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python"
}
}
}
}