1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
ledger-sqlite/.devcontainer/devcontainer.json

20 lines
535 B
JSON

// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Ledger SQLite",
"context": "..",
"dockerFile": "../Dockerfile",
"containerEnv": {
"DEBIAN_FRONTEND": "noninteractive",
"LEDGER_FILE": "/workspaces/ledger-sqlite/data/example.ledger",
"OUTPUT_FILE": "/workspaces/ledger-sqlite/data/example.sqlite"
},
"onCreateCommand": "/usr/local/bin/python -m pip install -U mypy pylint black",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
}
}
}