123456789101112131415161718192021222324252627282930313233 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "run",
- "type": "shell",
- "command": "python d:/Future/Slash/OpenISP/Core/Sources/main.py"
- },
- {
- "type": "docker-build",
- "label": "docker-build",
- "platform": "python",
- "dockerBuild": {
- "tag": "openisp:latest",
- "dockerfile": "${workspaceFolder}/Dockerfile",
- "context": "${workspaceFolder}",
- "pull": true
- }
- },
- {
- "type": "docker-run",
- "label": "docker-run: debug",
- "dependsOn": [
- "docker-build"
- ],
- "python": {
- "file": "Backend\\Sources\\run.py"
- }
- }
- ]
- }
|