How to regain control of the command prompt after starting a Rails server on Windows -


i know in unix if start server this:

rails server & 

and after starting server, still have same cmd window available you. on windows doesn't seem work. can similar in windows?

run server deamon in windows :

rails server -d  or   rails s -d 

it start rails server in background.


Comments