mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* fix devcontainer * fix scam autentication required * fix connection * install pg native lib * fix: host * Update devcontainer.json * Update docker-compose.yml * Update index.js
17 lines
490 B
JSON
17 lines
490 B
JSON
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
|
|
{
|
|
"name": "Node.js 12 & 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"
|
|
}
|
|
}
|
|
}
|
|
}
|