{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: http server Modul",
            "type": "python",
            "request": "launch",
            "module": "http.server",
            "args": [
                "--cgi"
            ]

        },        
        {
            "name": "Python: test server",
            "type": "python",
            "request": "launch",
            "program": "test_server.py",
            "console": "integratedTerminal",
            "args": [
                "--cgi"
            ]
        },
        {
            "name": "Python: test call to server",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}/tests/test_request_image_from_server.py",
            "console": "integratedTerminal",
            "args": [
                "--port=80", "--ip=feinstaub-server.mawi42.de"
            ]
        },
        {
            "name": "Python: Aktuelle Datei",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "args": [
            ]
        }
    ]
}
