nicegui.code-workspace 578 B

1234567891011121314151617181920212223242526272829303132
  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. ]
  17. },
  18. "launch": {
  19. "version": "0.2.0",
  20. "configurations": [
  21. {
  22. "name": "Dockerized NiceGUI",
  23. "type": "python",
  24. "request": "attach",
  25. "connect": {
  26. "port": 5678
  27. }
  28. }
  29. ]
  30. }
  31. }