diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-05-20 10:14:20 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-05-30 11:15:56 +0200 |
commit | 7ba6b759106ba0cc4fdc67c2277e398c3d407d75 (patch) | |
tree | d2705d08937890986f476826a037e1b360589cb7 /guides | |
parent | 290de901ddd3fcba0b064b1cb985d98dfaed01a2 (diff) | |
download | rails-7ba6b759106ba0cc4fdc67c2277e398c3d407d75.tar.gz rails-7ba6b759106ba0cc4fdc67c2277e398c3d407d75.tar.bz2 rails-7ba6b759106ba0cc4fdc67c2277e398c3d407d75.zip |
`bin/setup` script to bootstrap applications.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 530232f3f3..d9619bbc21 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -163,7 +163,7 @@ of the files and folders that Rails created by default: | File/Folder | Purpose | | ----------- | ------- | |app/|Contains the controllers, models, views, helpers, mailers and assets for your application. You'll focus on this folder for the remainder of this guide.| -|bin/|Contains the rails script that starts your app and can contain other scripts you use to deploy or run your application.| +|bin/|Contains the rails script that starts your app and can contain other scripts you use to setup, deploy or run your application.| |config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).| |config.ru|Rack configuration for Rack based servers used to start the application.| |db/|Contains your current database schema, as well as the database migrations.| |