CoolFace
Apppublic

JPBianchi/vectorsearch

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
devcontainer.json30 linesDownload Raw Back to .devcontainer
1{2    "name": "Python 3",3    "image": "mcr.microsoft.com/devcontainers/python:3.10",4	5	// Features to add to the dev container. More info: https://containers.dev/features.6	//"features": {}7	// Configure tool-specific properties.8	"customizations": {9		// Configure properties specific to VS Code.10		"vscode": {11			"settings": {"terminal.integrated.shell.linux": "/bin/bash"},12			"extensions": [13				"ms-toolsai.jupyter"14			]15		}16	},17    "forwardPorts": [8501, 8888],18	"portsAttributes": {19		"8501": {20			"label": "Streamlit App",21			"onAutoForward": "openBrowser"22		},23		"8888": {24			"label": "Jupyter Notebook",25			"onAutoForward": "openBrowser"26		}27	},28	"postCreateCommand": "pip install -r requirements.txt"29}30