Sha256: 1c3af995ca49ae95c65b3db7eb49fe327e1721eb9904f438a327dac119de550e

Contents?: true

Size: 438 Bytes

Versions: 1

Compression:

Stored size: 438 Bytes

Contents

# We currently use a single master database.yml file that exists in the repository.
# If you wish to override this with your own customized version, do so using
# the database.local.yml file (which does not/will not exist in the repository).

<%= file = File.join(RAILS_ROOT, "config", "database.master.yml")
    IO.read(file) %>

<%= file = File.join(RAILS_ROOT, "config", "database.local.yml")
    IO.read(file) if File.exist?(file) %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
railscart-0.0.3 starter_app/config/database.yml