From 389661e1e22dc1011bd77d8abc93e089304e067b Mon Sep 17 00:00:00 2001 From: Svintsov Dmitry Date: Tue, 6 Sep 2016 16:36:18 +0500 Subject: [PATCH] Added Pyramid to initial configuration --- package.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/package.json b/package.json index 9f6fe6fa119e..d5a90343ff4d 100644 --- a/package.json +++ b/package.json @@ -300,6 +300,22 @@ "DjangoDebugging" ] }, + { + "name": "Pyramid", + "type": "python", + "request": "launch", + "stopOnEntry": true, + "pythonPath": "${config.python.pythonPath}", + "program": "${config.python.pyramid.pserve}", + "args": [ + "${workspaceRoot}/development.ini" + ], + "debugOptions": [ + "WaitOnAbnormalExit", + "WaitOnNormalExit", + "RedirectOutput" + ] + }, { "name": "Watson", "type": "python", @@ -613,6 +629,11 @@ "type": "string", "default": "Python Test Log", "description": "The output window name for the unit test messages, defaults to Python output window." + }, + "python.pyramid.pserve": { + "type": "string", + "default": "pserve", + "description": "Path to pserve command, you can use a custom version of pserve by modifying this setting to include the full path." } } }