Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
5006, 5007, 8888
5006, 8888
],
// Use 'postCreateCommand' to run commands after the container is created.
// Install app dependencies.
"postCreateCommand": "pip3 install --user .",
// Use 'postAttachCommand' to run commands after a tool has attached to the container.
// Start the app.
"postAttachCommand": {
"server": "panel serve apps/app.py --autoreload --port 5007 --address 0.0.0.0"
"server": "panel serve apps/app.py --autoreload --port 5006"
},
"portsAttributes": {
"5007": {
Expand Down