File size: 716 Bytes
30ffb9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
    "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"
}