diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:24:44 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:24:44 -0700 |
commit | 194a42e7aa7d1812257b14eabdd30c35f45bc8ed (patch) | |
tree | 7b32c84e036f45bcc6e5814c25402ebffd944fdc /railties/guides/source/getting_started.textile | |
parent | b778a7eefbf755f5f131b5af06a4c555628075a9 (diff) | |
download | rails-194a42e7aa7d1812257b14eabdd30c35f45bc8ed.tar.gz rails-194a42e7aa7d1812257b14eabdd30c35f45bc8ed.tar.bz2 rails-194a42e7aa7d1812257b14eabdd30c35f45bc8ed.zip |
Updated wording to read better
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index dfd27459b4..86fcb226d5 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -300,11 +300,12 @@ h4. Configuring a Database Just about every Rails application will interact with a database. The database to use is specified in a configuration file, +config/database.yml+. If you open this file in a new Rails application, you'll see a default database -configuration using SQLite3. The file contains sections for three different +configured to use SQLite3. The file contains sections for three different environments in which Rails can run by default: -* The +development+ environment is used on your development computer as you interact manually with the application. -* The +test+ environment is used to run automated tests. +* The +development+ environment is used on your development/local computer as you interact +manually with the application. +* The +test+ environment is used when running automated tests. * The +production+ environment is used when you deploy your application for the world to use. h5. Configuring an SQLite3 Database |