Sha256: 7da1ab61d57af8c6b76bf0832fb63b7aafb5cc67b007bbaae3fa543fa7ad489d

Contents?: true

Size: 1.54 KB

Versions: 37

Compression:

Stored size: 1.54 KB

Contents

# MySQL.  Versions 5.0+ are recommended.
#
# Install the MYSQL driver
#   gem install mysql2
#
# Ensure the MySQL gem is defined in your Gemfile
#   gem 'mysql2'
#
# And be sure to use new-style password hashing:
#   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
#
default: &default
  adapter: mysql2
  encoding: utf8
  pool: 5
  username: root
  password:
  host: localhost

development:
  <<: *default
  database: my_cms

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  <<: *default
  database: my_cms_test

# As with config/secrets.yml, you never want to store sensitive information,
# like your database password, in your source code. If your source code is
# ever seen by anyone, they now have access to your database.
#
# Instead, provide the password as a unix environment variable when you boot
# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database
# for a full rundown on how to provide these environment variables in a
# production deployment.
#
# On Heroku and other platform providers, you may have a full connection URL
# available as an environment variable. For example:
#
#   DATABASE_URL="mysql2://myuser:mypass@localhost/somedatabase"
#
# You can use this database configuration with:
#
#   production:
#     url: <%= ENV['DATABASE_URL'] %>
#
production:
  <<: *default
  database: dummy_production
  username: dummy
  password: <%= ENV['DUMMY_DATABASE_PASSWORD'] %>

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
optimacms-0.3.8 spec/dummy/config/database.yml
optimacms-0.3.7 spec/dummy/config/database.yml
optimacms-0.3.6 spec/dummy/config/database.yml
optimacms-0.3.5 spec/dummy/config/database.yml
optimacms-0.2.22 spec/dummy/config/database.yml
optimacms-0.2.21 spec/dummy/config/database.yml
optimacms-0.2.20 spec/dummy/config/database.yml
optimacms-0.2.19 spec/dummy/config/database.yml
optimacms-0.2.18 spec/dummy/config/database.yml
optimacms-0.2.16 spec/dummy/config/database.yml
optimacms-0.2.15 spec/dummy/config/database.yml
optimacms-0.2.14 spec/dummy/config/database.yml
optimacms-0.2.13 spec/dummy/config/database.yml
optimacms-0.2.12 spec/dummy/config/database.yml
optimacms-0.2.11 spec/dummy/config/database.yml
optimacms-0.2.9 spec/dummy/config/database.yml
optimacms-0.2.3 spec/dummy/config/database.yml
optimacms-0.2.1 spec/dummy/config/database.yml
optimacms-0.1.59 spec/dummy/config/database.yml
optimacms-0.1.58 spec/dummy/config/database.yml