Merge pull request #270 from mrbwburns/pr-devcontainer

Pr devcontainer
This commit is contained in:
Ace 2023-09-20 12:09:02 +02:00 committed by GitHub
commit 5ca5ba644c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "Inkycal-dev",
"image": "python:3.9-bullseye",
// This is the settings.json mount
"mounts": ["source=/c/temp/settings_test.json,target=/boot/settings.json,type=bind,consistency=cached"],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip3 install --upgrade pip && pip3 install --user -r requirements.txt",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
]
}
}
}