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:
parent
fa0f731427
commit
fb4a40e628
|
@ -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:
|
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!
|
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!
|
||||||
|
|
Loading…
Reference in New Issue