37 lines
825 B
YAML
37 lines
825 B
YAML
# MySQL. Versions 5.1.10 and up are supported.
|
|
#
|
|
# 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.7/en/old-client.html
|
|
#
|
|
default: &default
|
|
adapter: mysql2
|
|
encoding: utf8
|
|
pool: 5
|
|
host: 51.254.143.84
|
|
|
|
development:
|
|
<<: *default
|
|
username: simplecrm_usr
|
|
password: CKScvDDtFzdwB4ep
|
|
database: simplecrm
|
|
|
|
# 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: simplecrm_test
|
|
|
|
|
|
production:
|
|
<<: *default
|
|
database: simplecms_prod
|
|
username: simplecms_prod_u
|
|
password: xUTSz79pDWbIGcOC
|