Today I Learned
Running rails dev server in the background
Posted on January 16, 2018

When I am working on UI in a rails app, I typically don’t care to read the information in a rails debugger.

Running rails in the background is as easy as:

rails s -d

Quitting the process is slightly tricker than the good ol fashion cmd-c

kill -9 $(cat tmp/pids/server.pid)