tasks.json 726 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "run",
  8. "type": "shell",
  9. "command": "python d:/Future/Slash/OpenISP/Core/Sources/main.py"
  10. },
  11. {
  12. "type": "docker-build",
  13. "label": "docker-build",
  14. "platform": "python",
  15. "dockerBuild": {
  16. "tag": "openisp:latest",
  17. "dockerfile": "${workspaceFolder}/Dockerfile",
  18. "context": "${workspaceFolder}",
  19. "pull": true
  20. }
  21. },
  22. {
  23. "type": "docker-run",
  24. "label": "docker-run: debug",
  25. "dependsOn": [
  26. "docker-build"
  27. ],
  28. "python": {
  29. "file": "Backend\\Sources\\run.py"
  30. }
  31. }
  32. ]
  33. }