Files
redux-scraper/.vscode/launch.json
2024-12-25 21:53:47 +00:00

24 lines
465 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug staging server",
"type": "rdbg",
"request": "launch",
"command": "bundle",
"script": "exec",
"args": ["rails", "server"],
"env": {
"RUBY_DEBUG_OPEN": "true",
"RAILS_ENV": "staging"
}
},
{
"type": "rdbg",
"name": "Attach rdbg",
"request": "attach",
"debugPort": "/tmp/rdbg-1000/rdbg-492838"
}
]
}