summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-12-03 01:32:54 +0000
committerPete Johanson <peter@peterjohanson.com>2020-12-08 00:44:07 -0500
commita9f257cdecf7ffa2edb082e5080dbdfea047e82b (patch)
treeba9987e5b3bd152058b06ac79313043a54385016 /.devcontainer/devcontainer.json
parent784ddfc6208447b19b3eb888c0c20d4c28f82753 (diff)
feat(devcontainer): add forwardPorts 3000
Required for testing the documentation with the host's browser. PR: #477
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 7a1308f..788addb 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -7,5 +7,6 @@
"extensions": ["ms-vscode.cpptools"],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
- }
+ },
+ "forwardPorts": [3000]
}