nicegui.code-workspace 915 B

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