File: devcontainer.json

package info (click to toggle)
node-postgres 8.16.3%2B~cs35.24.27-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,784 kB
  • sloc: javascript: 15,879; python: 79; makefile: 57
file content (16 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
{
	"name": "Node.js 20 & Postgres",
	"dockerComposeFile": "docker-compose.yml",
	"service": "web",
	"workspaceFolder": "/workspace",
	// Add the IDs of extensions you want installed when the container is created in the array below.
	"customizations":{
		"vscode": {
			"extensions": ["dbaeumer.vscode-eslint"],
			"settings": {
				"terminal.integrated.shell.linux": "/bin/bash"
			}
		}
	}
}