amaru-source / .devcontainer /devcontainer.json
betterwithage's picture
mirror github.com/szl-holdings/amaru@779a0d7e4e69
a8b4b87 verified
raw
history blame contribute delete
507 Bytes
{
"name": "SZL Holdings Python Dev",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"postCreateCommand": "pip install -r requirements.txt 2>/dev/null || pip install -e . 2>/dev/null || true",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"github.copilot"
]
}
},
"remoteUser": "vscode"
}