Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
.vscode
/
Filename :
launch.json
back
Copy
{ "version": "0.2.0", "configurations": [ { "type": "rdbg", "request": "launch", "name": "Launch Rails Server", "command": "bin/rails", "script": "server" }, { "type": "rdbg", "name": "Attach to web server", "request": "attach", }, { "type": "rdbg", "name": "Attach with rdbg (tcp 12345)", "request": "attach", "debugPort": "localhost:12345", "localfsMap": "/usr/src/app:${workspaceFolder}" }, { "type": "rdbg", "request": "launch", "name": "Run Current Spec File", "rdbgPath": "bin/rdbg-spring", "command": "rspec", "script": "${file}" }, { "type": "rdbg", "request": "launch", "name": "Run Current Spec File and Line", "rdbgPath": "bin/rdbg-spring", "command": "rspec", "script": "${file}:${lineNumber}" } ] }