Skip to content

Commit

Permalink
Add devcontainer.json for Node.js and Python development
Browse files Browse the repository at this point in the history
  • Loading branch information
HlexNC committed Apr 3, 2024
1 parent 5acac03 commit 189b342
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "Python & Node.js Project",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"ms-python.python",
"dbaeumer.vscode-eslint"
],
"forwardPorts": [],
"postCreateCommand": "pip install -r requirements.txt && npm install",
"remoteUser": "root",
"workspaceFolder": "/workspace"
}

0 comments on commit 189b342

Please sign in to comment.