mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
8dad49d75f
* dev(codespaces): use Dockerfile not docker-compose I wasn't so confident around the updating of the docker-compose file to include minio, and the workflow around it. I'd rather just drop into something with docker-in-docker and run docker-compose myself. Also finally added some extensions I'm using so I don't need to enable them all the time. TODO: update docker-compose file to work with docker-in-docker. At the moment I don't think the networking will be correct. * Merge remote-tracking branch 'origin/master' into hackaton_session_rec * add new line * remove yarn install, it will be overwritten by the codespaces mount * revert compose formatting * format with prettier
63 lines
2.3 KiB
JSON
63 lines
2.3 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/docker-existing-docker-compose
|
|
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
|
|
{
|
|
"name": "PostHog codespaces development environment",
|
|
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "../",
|
|
"cacheFrom": ""
|
|
},
|
|
|
|
"remoteUser": "vscode",
|
|
"overrideCommand": false,
|
|
"mounts": ["source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"],
|
|
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged", "--init"],
|
|
|
|
"workspaceFolder": "/workspace",
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
/*
|
|
Python settings
|
|
*/
|
|
"python.defaultInterpreterPath": "/usr/local/bin/python",
|
|
|
|
// Configure linting
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": false, // We use flake8, disable pylint
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
|
|
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
|
|
|
|
// Configure formatting
|
|
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
|
|
"python.formatting.provider": "black",
|
|
|
|
// Configure testing
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestPath": "/usr/local/py-utils/bin/pytest"
|
|
},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"esbenp.prettier-vscode",
|
|
"ms-azuretools.vscode-docker",
|
|
"stkb.rewrap",
|
|
"GitHub.copilot",
|
|
"KnisterPeter.vscode-github",
|
|
"eamodio.gitlens",
|
|
"wix.vscode-import-cost",
|
|
"Orta.vscode-jest",
|
|
"ckolkman.vscode-postgres",
|
|
"mtxr.sqltools",
|
|
"ultram4rine.sqltools-clickhouse-driver"
|
|
],
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [8000, 5432, 6379, 8123, 8234, 9000, 9092, 9440, 9009]
|
|
}
|