2021-07-15 20:53:52 +02:00
|
|
|
// 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.
|
|
|
|
{
|
2021-11-23 09:34:51 +01:00
|
|
|
"name": "PostHog codespaces development environment",
|
2021-07-15 20:53:52 +02:00
|
|
|
|
2021-11-23 09:34:51 +01:00
|
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
|
|
"service": "app",
|
2021-07-15 20:53:52 +02:00
|
|
|
"workspaceFolder": "/workspace",
|
|
|
|
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
2021-11-23 09:34:51 +01:00
|
|
|
"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"
|
|
|
|
},
|
2021-07-15 20:53:52 +02:00
|
|
|
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
2021-11-23 09:34:51 +01:00
|
|
|
"extensions": ["ms-python.python", "ms-python.vscode-pylance"],
|
2021-07-15 20:53:52 +02:00
|
|
|
|
2021-11-23 09:34:51 +01:00
|
|
|
/*
|
|
|
|
Life cycle commands
|
|
|
|
*/
|
|
|
|
// Use initialize stage to e.g. setup env vars we need before codespaces
|
|
|
|
// builds the docker image
|
|
|
|
"postStartCommand": ".devcontainer/container_start.sh",
|
2021-07-15 20:53:52 +02:00
|
|
|
|
2021-11-23 09:34:51 +01:00
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
|
|
"forwardPorts": [8000, 5432, 6379, 8123, 8234, 9000, 9092, 9440, 9009]
|
2021-07-15 20:53:52 +02:00
|
|
|
}
|