nicegui.code-workspace 861 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "esbenp.prettier-vscode",
  17. "littlefoxteam.vscode-python-test-adapter",
  18. "cschleiden.vscode-github-actions",
  19. "samuelcolvin.jinjahtml",
  20. "ms-python.isort",
  21. "Vue.volar"
  22. ]
  23. },
  24. "launch": {
  25. "version": "0.2.0",
  26. "configurations": [
  27. {
  28. "name": "current file",
  29. "type": "python",
  30. "request": "launch",
  31. "program": "${file}",
  32. "console": "integratedTerminal"
  33. },
  34. {
  35. "name": "Dockerized NiceGUI",
  36. "type": "python",
  37. "request": "attach",
  38. "connect": {
  39. "port": 5678
  40. }
  41. }
  42. ]
  43. }
  44. }