[Rails] Newbie! How to return to the command prompt after launching rails server

2010-10-08 Thread Murph2m
Hi I am following the Ruby on Rails Tutorial: Learn Rails by Example I am on chapter 2 creating the demo app using scaffolding and have generated the user scaffold, migrated the database using Rake and then run the local webserver using 'rails s' This has all worked great and I now need to

Re: [Rails] Newbie! How to return to the command prompt after launching rails server

2010-10-08 Thread Mark Weston
rails server -d (or --daemon) will start up the server process in the background and return you to your terminal prompt (at least on Linux or OS/X, I haven't tried it in Windows). But you do get useful output in the server window in terms of error messages and deprecation warnings, so it's

Re: [Rails] Newbie! How to return to the command prompt after launching rails server

2010-10-08 Thread Maksim Gudovsikov
Am 07.10.2010 23:22, schrieb Murph2m: This has all worked great and I now need to generate the next bit of scaffolding but I don't know how to get back to the command prompt after using 'rails s' . I know I could launch another terminal session but is this the only way? Will I be leaving one