Fix rails server start command in Vagrant guide

Thanks to Mittineague on meta for pointing out this needed to be fixed
for newer Rails versions.
This commit is contained in:
Matt Palmer 2015-10-09 08:47:01 +11:00
parent fa0f731427
commit fb4a40e628
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ bundle exec rake db:migrate
Once your VM is up to date, you can start a rails instance using the following command from the /vagrant directory:
```
bundle exec rails s
bundle exec rails s -b 0.0.0.0
```
In a few seconds, rails will start serving pages. To access them, open a web browser to [http://localhost:4000](http://localhost:4000) - if it all worked you should see discourse! Congratulations, you are ready to start working!