nicegui.code-workspace 894 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. }
  6. ],
  7. "settings": {
  8. "files.associations": {
  9. "*.html": "jinja-html"
  10. }
  11. },
  12. "extensions": {
  13. "recommendations": [
  14. "ms-python.vscode-pylance",
  15. "ms-python.python",
  16. "himanoa.python-autopep8",
  17. "esbenp.prettier-vscode",
  18. "littlefoxteam.vscode-python-test-adapter",
  19. "cschleiden.vscode-github-actions",
  20. "samuelcolvin.jinjahtml",
  21. "ms-python.isort",
  22. "Vue.volar"
  23. ]
  24. },
  25. "launch": {
  26. "version": "0.2.0",
  27. "configurations": [
  28. {
  29. "name": "current file",
  30. "type": "python",
  31. "request": "launch",
  32. "program": "${file}",
  33. "console": "integratedTerminal"
  34. },
  35. {
  36. "name": "Dockerized NiceGUI",
  37. "type": "python",
  38. "request": "attach",
  39. "connect": {
  40. "port": 5678
  41. }
  42. }
  43. ]
  44. }
  45. }