Created
September 22, 2025 02:44
-
-
Save initcron/38e9a1bc3c0a0ad00e2bfe11820be3a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "name": "Multi-Agent Assistant DevContainer", | |
| "dockerFile": "Dockerfile", | |
| "workspaceFolder": "/workspaces/multi-agent-assistant", | |
| "forwardPorts": [8000, 3000], | |
| "postCreateCommand": "pip install --upgrade pip && cd backend && pip install -r requirements.txt && cd ../frontend && npm install", | |
| "customizations": { | |
| "vscode": { | |
| "settings": { | |
| "python.defaultInterpreterPath": "/usr/local/bin/python3.11", | |
| "terminal.integrated.defaultProfile.linux": "bash" | |
| }, | |
| "extensions": [ | |
| "ms-python.python", | |
| "ms-python.vscode-pylance", | |
| "esbenp.prettier-vscode", | |
| "dbaeumer.vscode-eslint", | |
| "ms-toolsai.jupyter" | |
| ] | |
| } | |
| }, | |
| "remoteUser": "vscode" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment