learnhouse/.devcontainer/devcontainer.json
2024-03-19 00:30:56 +01:00

28 lines
No EOL
718 B
JSON

{
"name": "learnhouse-backend",
"dockerComposeFile": ["../docker-compose.yml"],
"service": "api",
"workspaceFolder": "/usr/learnhouse",
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"ms-python.python",
"ms-python.black-formatter",
"ms-python.vscode-pylance",
"styled-components.vscode-styled-components",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-python.isort",
"redhat.vscode-yaml",
"bradlc.vscode-tailwindcss"
],
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.python"
}
}
}
},
"shutdownAction": "stopCompose"
}