diff options
author | Anthony Crumley <anthony.crumley@gmail.com> | 2018-04-30 16:28:11 -0500 |
---|---|---|
committer | Anthony Crumley <anthony.crumley@gmail.com> | 2018-04-30 16:33:55 -0500 |
commit | 6b6996c5e5b59ef1f4c31f22b4d4e962667cef9b (patch) | |
tree | a3570df0d0cc14774930d6dfecc1716457902cfa /guides | |
parent | 5909cdb9625ce92ccee8dae534ab175c4f6efe00 (diff) | |
download | rails-6b6996c5e5b59ef1f4c31f22b4d4e962667cef9b.tar.gz rails-6b6996c5e5b59ef1f4c31f22b4d4e962667cef9b.tar.bz2 rails-6b6996c5e5b59ef1f4c31f22b4d4e962667cef9b.zip |
Document rails new <app> storage folder
[ci skip] Active Storage now adds a storage folder to newly generated
rails applications.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 9dab7a9d6f..b261bdf54b 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -179,6 +179,7 @@ of the files and folders that Rails created by default: |public/|The only folder seen by the world as-is. Contains static files and compiled assets.| |Rakefile|This file locates and loads tasks that can be run from the command line. The task definitions are defined throughout the components of Rails. Rather than changing `Rakefile`, you should add your own tasks by adding files to the `lib/tasks` directory of your application.| |README.md|This is a brief instruction manual for your application. You should edit this file to tell others what your application does, how to set it up, and so on.| +|storage/|Active Storage files for Disk Service. This is covered in [Active Storage Overview](active_storage_overview.html).| |test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).| |tmp/|Temporary files (like cache and pid files).| |vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.| |