1
0
mirror of synced 2025-12-30 21:02:34 -05:00
Files
docs/.devcontainer/test-custom-devcontainer/devcontainer.json
2022-04-07 10:01:05 +01:00

21 lines
482 B
JSON

{
"name": "test",
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh",
},
// Visual Studio Code extensions which help authoring for docs.github.com.
"extensions": [
"dbaeumer.vscode-eslint",
"sissel.shopify-liquid"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [5000],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "echo test > aaa-TEST.txt"
}