Created
December 11, 2020 09:42
-
-
Save marcometz/410ee3f5502418ea58f53c146f5ad990 to your computer and use it in GitHub Desktop.
VS Code debugger rails launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Verwendet IntelliSense zum Ermitteln möglicher Attribute. | |
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. | |
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 | |
// | |
// https://github.com/microsoft/vscode-recipes/tree/master/debugging-Ruby-on-Rails | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Rails server", | |
"type": "Ruby", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"program": "${workspaceRoot}/bin/rails", | |
"args": [ | |
"server" | |
], | |
"useBundler": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment