chore(*): Add devcontainer vscode support

pull/550/head
Josh Creek 2 years ago
parent f6efc6a52e
commit 7b56495c59

@ -0,0 +1,19 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.238.0/containers/docker-existing-dockerfile
{
"name": "Existing Dockerfile",
// Sets the run context to one level up instead of the .devcontainer folder.
"context": "..",
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
"dockerFile": "../Dockerfile",
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-python.python"
],
// Install OS dependencies
"postCreateCommand": "apt-get update && apt -qq install -y sox && apt-get install -y libsox-fmt-all"
}

1
.gitattributes vendored

@ -0,0 +1 @@
* text=auto eol=lf

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Main.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
Loading…
Cancel
Save