Spaces:
Build error
Build error
Invalid JSON:Expected double-quoted property name in JSONat line 5, column 2
| { | |
| "name": "Python 3", | |
| "image": "mcr.microsoft.com/devcontainers/python:3.10", | |
| // Features to add to the dev container. More info: https://containers.dev/features. | |
| //"features": {} | |
| // Configure tool-specific properties. | |
| "customizations": { | |
| // Configure properties specific to VS Code. | |
| "vscode": { | |
| "settings": {"terminal.integrated.shell.linux": "/bin/bash"}, | |
| "extensions": [ | |
| "ms-toolsai.jupyter" | |
| ] | |
| } | |
| }, | |
| "forwardPorts": [8501, 8888], | |
| "portsAttributes": { | |
| "8501": { | |
| "label": "Streamlit App", | |
| "onAutoForward": "openBrowser" | |
| }, | |
| "8888": { | |
| "label": "Jupyter Notebook", | |
| "onAutoForward": "openBrowser" | |
| } | |
| }, | |
| "postCreateCommand": "pip install -r requirements.txt" | |
| } | |