You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/source/getting_started.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,7 @@ of the files and folders that Rails creates by default:
177
177
|config/|Contains configuration for your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).|
178
178
|config.ru|Rack configuration for Rack-based servers used to start the application. For more information about Rack, see the [Rack website](https://rack.github.io/).|
179
179
|db/|Contains your current database schema, as well as the database migrations.|
180
+
|Dockerfile|Configuration file for Docker.|
180
181
|Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the [Bundler website](https://bundler.io).|
181
182
|lib/|Extended modules for your application.|
182
183
|log/|Application log files.|
@@ -187,6 +188,7 @@ of the files and folders that Rails creates by default:
187
188
|test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).|
188
189
|tmp/|Temporary files (like cache and pid files).|
189
190
|vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.|
191
+
|.dockerignore|This file tells Docker which files it should not copy into the container.|
190
192
|.gitattributes|This file defines metadata for specific paths in a git repository. This metadata can be used by git and other tools to enhance their behavior. See the [gitattributes documentation](https://git-scm.com/docs/gitattributes) for more information.|
191
193
|.gitignore|This file tells git which files (or patterns) it should ignore. See [GitHub - Ignoring files](https://help.github.com/articles/ignoring-files) for more information about ignoring files.|
192
194
|.ruby-version|This file contains the default Ruby version.|
0 commit comments