mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
434e379f9a
git-subtree-dir: plugin-server git-subtree-mainline:776b056b6d
git-subtree-split:01a99a4e26
37 lines
1.3 KiB
JSON
37 lines
1.3 KiB
JSON
// Update the VARIANT arg in docker-compose.yml to pick a Node.js version: 10, 12, 14
|
|
{
|
|
"name": "Node.js & PostgreSQL",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "app",
|
|
"workspaceFolder": "/workspace",
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"sqltools.connections": [
|
|
{
|
|
"name": "Container database",
|
|
"driver": "PostgreSQL",
|
|
"previewLimit": 50,
|
|
"server": "localhost",
|
|
"port": 5432,
|
|
"database": "postgres",
|
|
"username": "postgres",
|
|
"password": "postgres"
|
|
}
|
|
]
|
|
},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": ["dbaeumer.vscode-eslint", "mtxr.sqltools", "mtxr.sqltools-driver-pg"],
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
// "forwardPorts": [3000, 5432],
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
// "postCreateCommand": "yarn install",
|
|
|
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "node"
|
|
}
|