Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix devcontainer #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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