Skip to content

Commit 17ddd98

Browse files
authored
Enhance development environment: add Python and Pylance extensions, forward Django and MongoDB ports; update requirements.txt to include pymongo
1 parent ed6f205 commit 17ddd98

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111
"github.copilot",
1212
"github.copilot-chat",
1313
"Phu1237.vs-browser",
14-
"markdown-lint.markdownlinter"
14+
"markdown-lint.markdownlinter",
15+
"ms-python.python", // Python extension
16+
"ms-python.vscode-pylance" // Pylance extension for Python
1517
]}
16-
}
18+
},
19+
"forwardPorts": [
20+
8000, // Django default port
21+
27017 // MongoDB default port
22+
]
1723
}

octofit-tracker/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ djangorestframework==3.14.0
33
django-allauth==0.51.0
44
dj-rest-auth
55
djongo==1.3.6
6+
pymongo==3.12
67
sqlparse==0.2.4
78
stack-data==0.6.3
89
sympy==1.12

0 commit comments

Comments
 (0)