devcontainer.json 842 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "Goldair Climate dev",
  3. "image": "ludeeus/container:integration",
  4. "context": "..",
  5. "appPort": ["8123:8123"],
  6. "postCreateCommand": "dc install",
  7. "runArgs": [
  8. "-e",
  9. "GIT_EDITOR=code --wait",
  10. "-v",
  11. "${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh"
  12. ],
  13. "extensions": [
  14. "ms-python.python",
  15. "visualstudioexptteam.vscodeintellicode",
  16. "redhat.vscode-yaml",
  17. "esbenp.prettier-vscode"
  18. ],
  19. "settings": {
  20. "files.eol": "\n",
  21. "python.pythonPath": "/usr/local/bin/python",
  22. "python.linting.pylintEnabled": true,
  23. "python.linting.enabled": true,
  24. "python.formatting.provider": "black",
  25. "editor.formatOnPaste": false,
  26. "editor.formatOnSave": true,
  27. "editor.formatOnType": true,
  28. "files.trimTrailingWhitespace": true,
  29. "terminal.integrated.shell.linux": "/bin/bash"
  30. }
  31. }