nicegui.code-workspace 809 B

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