aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorBradly Feeley <bradlyf@gmail.com>2013-08-03 15:35:08 -0700
committerBradly Feeley <bradlyf@gmail.com>2013-08-03 16:31:23 -0700
commit7116a473b19327cb8a4a787a5313ffb6b36f7dcc (patch)
treeee82f40b4b6fcea7871b58fc0f2d1a7212887eda /guides/source
parent71f512646a447e4b15c613d35842728e6b8dddb1 (diff)
downloadrails-7116a473b19327cb8a4a787a5313ffb6b36f7dcc.tar.gz
rails-7116a473b19327cb8a4a787a5313ffb6b36f7dcc.tar.bz2
rails-7116a473b19327cb8a4a787a5313ffb6b36f7dcc.zip
Add note that you must be in the rails app directory when starting up the server.
This is a response to issue #11731 and is a common mistake for people newer to rails that try forget to cd into the new rails app after running rails new.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 27768952cc..50d1cd5844 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -155,7 +155,7 @@ To begin with, let's get some text up on screen quickly. To do this, you need to
### Starting up the Web Server
-You actually have a functional Rails application already. To see it, you need to start a web server on your development machine. You can do this by running:
+You actually have a functional Rails application already. To see it, you need to start a web server on your development machine. You can do this by running the following in the root directory of your rails app:
```bash
$ rails server