/ .devcontainer / devcontainer.json
devcontainer.json
 1  // For format details, see https://aka.ms/devcontainer.json. For config options, see the
 2  // README at: https://github.com/devcontainers/templates/tree/main/src/python
 3  {
 4  	"name": "Python 3",
 5  	// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
 6  	"image": "metagpt/metagpt:latest",
 7  
 8  	// Features to add to the dev container. More info: https://containers.dev/features.
 9  	// "features": {},
10  
11  	// Configure tool-specific properties.
12  	"customizations": {
13  		// Configure properties specific to VS Code.
14  		"vscode": {
15  			"settings": {},
16  			"extensions": [
17  				"streetsidesoftware.code-spell-checker"
18  			]
19  		}
20  	},
21  
22  	// Use 'postCreateCommand' to run commands after the container is created.
23  	"postCreateCommand": "./.devcontainer/postCreateCommand.sh"
24  
25  	// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
26  	// "remoteUser": "root"
27  }