Skip to content

Commit

Permalink
Add a devcontainer config file (#522)
Browse files Browse the repository at this point in the history
This enables using the VSCode devcontainer extension.
  • Loading branch information
noahp authored Oct 18, 2024
1 parent ebd02ca commit 109a44e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "Interrupt",
"build": {
"dockerfile": "../Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"DavidAnson.vscode-markdownlint"
]
}
},
"postAttachCommand": "./entrypoint.sh",
"forwardPorts": [4000],
"portsAttributes": {
"4000": {
"label": "Interrupt",
"onAutoForward": "openBrowser"
}
}
}

0 comments on commit 109a44e

Please sign in to comment.