I just threw together a script for easily attaching a debugger to any of your #overmind run processes. let me know if it's useful!
I'm using it for attaching to my #rails processes, as I don't like how overmind connect web echoes everything the web process outputs.
#!/usr/bin/env sh
if
[[
"
$1
"
==
"--help"
]]
;
then
echo
"Usage:
$0
[web/worker/etc…]"
echo
echo
"Attach an rdbg debugger to the named overmind process. (default: web)"
exit
0
fi
byJP
I just threw together a script for easily attaching a debugger to any of your overmind run processes. let me know if it's useful! I'm using it for attaching to my rails processes, as I don't like how overmind connect web echoes everything the web process outputs. #!/usr/bin/env sh if [[ "$1" == "--help" ]]; then echo "Usage: $0 [web/worker/etc…]" echo echo "Attach an rdbg debugger to the named overmind process.







