Skip to content
Snippets Groups Projects
tasks.json 2.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • Victor Löfgren's avatar
    Victor Löfgren committed
    {
        "version": "2.0.0",
        "tasks": [
            {
    
                "label": "Start client",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "type": "npm",
                "script": "start",
                "path": "client/",
                "group": "build",
                "problemMatcher": [],
                "presentation": {
                    "group": "Client/Server"
                }
            },
            {
    
                "label": "Test client",
                "type": "npm",
                "script": "test:coverage:html",
                "path": "client/",
    
                "group": "build",
    
                "problemMatcher": [],
            },
            {
                "label": "Open client coverage",
                "type": "shell",
                "command": "start ./output/coverage/jest/index.html",
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/client"
                },
            },
            {
                "label": "Start server",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "type": "shell",
                "group": "build",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "command": "env/Scripts/python main.py",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server"
                },
                "presentation": {
                    "group": "Client/Server"
                }
            },
            {
    
                "label": "Test server",
                "type": "shell",
                "group": "build",
                "command": "env/Scripts/pytest.exe --cov-report html --cov app tests/",
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server"
                },
            },
    
                "label": "Populate database",
    
                "type": "shell",
                "group": "build",
                "command": "env/Scripts/python populate.py",
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server"
                },
            },
    
            {
                "label": "Open server coverage",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "type": "shell",
    
                "command": "start ./htmlcov/index.html",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server"
                },
            },
    
            {
                "label": "Generate server documentation",
                "type": "shell",
                "command": "../env/Scripts/activate; ./make html",
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server/docs"
                },
            },
            {
                "label": "Open server documentation",
                "type": "shell",
                "command": "start index.html",
                "problemMatcher": [],
                "options": {
                    "cwd": "${workspaceFolder}/server/docs/build/html"
                },
            },
    
                "label": "Start client and server",
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                "group": "build",
                "dependsOn": [
    
                    "Start server",
                    "Start client"
    
    Victor Löfgren's avatar
    Victor Löfgren committed
                ],
                "problemMatcher": []
            }
        ]
    }