nicegui.code-workspace 668 B

123456789101112131415161718192021222324252627282930313233343536
  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. ]
  18. },
  19. "launch": {
  20. "version": "0.2.0",
  21. "configurations": [
  22. {
  23. "name": "Dockerized NiceGUI",
  24. "type": "python",
  25. "request": "attach",
  26. "connect": {
  27. "port": 5678
  28. }
  29. }
  30. ]
  31. },
  32. "files.associations": {
  33. "*.html": "jinja-html"
  34. }
  35. }