Skip to content
Snippets Groups Projects
launch.json 891 B
Newer Older
  • Learn to ignore specific revisions
  • Jonas Leder's avatar
    Jonas Leder committed
    {
        // 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": [
    
    Jonas Leder's avatar
    .  
    Jonas Leder committed
        
    
    Jonas Leder's avatar
    Jonas Leder committed
            {
                "name": "Python: Aktuelle Datei",
                "type": "python",
                "request": "launch",
    
                "program": "${file}",
                "console": "integratedTerminal"
            }
            {
    
    Jonas Leder's avatar
    Jonas Leder committed
                "name": "Python: URL shorter debug",
    
                "type": "python",
                "request": "launch",
    
    Jonas Leder's avatar
    Jonas Leder committed
                "program": "main.py",
                "console": "integratedTerminal"
            }
    
    Jonas Leder's avatar
    Jonas Leder committed
            {
                "name": "Python: URL shorter Production",
                "type": "python",
                "request": "launch",
                "program": ".",
                "console": "integratedTerminal"
            }
    
    Jonas Leder's avatar
    Jonas Leder committed
        ]
    }