mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 11:30:15 +00:00
Add devcontainer configuration
This commit is contained in:
parent
9abe9c47a2
commit
3ea837c727
2 changed files with 50 additions and 0 deletions
23
.devcontainer/devcontainer.json
Normal file
23
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "Pulse Development",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"context": "."
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"golang.go",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"esbenp.prettier-vscode"
|
||||
],
|
||||
"settings": {
|
||||
"go.gopath": "/go",
|
||||
"go.toolsManagement.autoUpdate": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"forwardPorts": [8080, 3000],
|
||||
"postCreateCommand": "go version && node --version",
|
||||
"remoteUser": "vscode"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue