2022-06-13 14:26:46 -07:00
|
|
|
{
|
|
|
|
|
"name": "notification-admin",
|
|
|
|
|
"dockerComposeFile": "../docker-compose.devcontainer.yml",
|
|
|
|
|
"service": "admin",
|
|
|
|
|
"workspaceFolder": "/workspace",
|
|
|
|
|
"shutdownAction": "stopCompose",
|
|
|
|
|
"remoteEnv": {
|
|
|
|
|
"PATH": "/home/vscode/.local/bin:${containerEnv:PATH}" // give our installed Python modules precedence
|
|
|
|
|
},
|
|
|
|
|
"settings": {
|
|
|
|
|
"[python]": {
|
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
|
},
|
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
|
"python.linting.pylintEnabled": true,
|
2022-08-15 16:37:17 -07:00
|
|
|
"python.linting.flake8Enabled": true,
|
2022-09-07 21:32:33 -07:00
|
|
|
"python.defaultInterpreterPath": "/usr/bin/python3",
|
2022-08-05 00:25:03 -07:00
|
|
|
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
|
|
|
|
|
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
|
2022-09-07 21:32:33 -07:00
|
|
|
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
|
|
|
|
|
"python.analysis.extraPaths": [
|
|
|
|
|
"/home/vscode/.local/lib/python3.9/site-packages"
|
|
|
|
|
]
|
2022-06-13 14:26:46 -07:00
|
|
|
},
|
|
|
|
|
"extensions": [
|
|
|
|
|
"donjayamanne.python-extension-pack",
|
|
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
|
"eamodio.gitlens",
|
|
|
|
|
"wholroyd.jinja",
|
|
|
|
|
"pmbenjamin.vscode-snyk",
|
|
|
|
|
"visualstudioexptteam.vscodeintellicode",
|
2022-07-21 18:25:23 -07:00
|
|
|
"visualstudioexptteam.intellicode-api-usage-examples",
|
2022-09-09 13:13:45 -07:00
|
|
|
"yzhang.markdown-all-in-one"
|
2022-06-13 14:26:46 -07:00
|
|
|
],
|
|
|
|
|
"forwardPorts": [
|
|
|
|
|
6012
|
|
|
|
|
],
|
|
|
|
|
"postCreateCommand": "chmod u+x devcontainer-admin/scripts/notify-admin-entrypoint.sh && ./devcontainer-admin/scripts/notify-admin-entrypoint.sh",
|
|
|
|
|
"remoteUser": "vscode"
|
2022-08-15 16:37:17 -07:00
|
|
|
}
|