mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:49:06 +08:00
DEV: allow USR2 to restart unicorn in dev
Well all this does is amends a commit comment cause I was over eager and pushed previous commit. This is the comment I wanted.... This allows `pkill -USR2 -f 'ruby bin/unicorn'` to restart current unicorn It is handy if you want to bind a keyboard shortcut for unicorn restarts in dev. By doing so you can avoid finding the terminal, hitting ctrl-c and then hitting up, enter, heading back to browser. It saves time. Automate stuff, you will not regret it...
This commit is contained in:
parent
fb8d1f35a4
commit
7c084c7cab
|
@ -50,10 +50,9 @@ if ARGV.include?("--help")
|
|||
exit
|
||||
end
|
||||
|
||||
# this dev_mode hackery enables, the following script to be used to restart unicorn:
|
||||
# this dev_mode hackery enables, the following to be used to restart unicorn:
|
||||
#
|
||||
# #!/usr/bin/env bash
|
||||
# kill -s USR2 `ps aux | grep ruby\ bin\/unicorn | grep -v grep | awk '{print $2}'`
|
||||
# pkill -USR2 -f 'ruby bin/unicorn'
|
||||
#
|
||||
# This is handy if you want to bind a key to restarting unicorn in dev
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user