Sha256: 0baf31f1728d0510338303c870c925680599d82ee03fc16e01e2b25c32e32ab0

Contents?: true

Size: 1.34 KB

Versions: 14

Compression:

Stored size: 1.34 KB

Contents

# MySQL.  Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
#   gem install mysql
# On Mac OS X:
#   sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql
# On Mac OS X Leopard:
#   sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
#       This sets the ARCHFLAGS environment variable to your native architecture
# On Windows:
#   gem install mysql
#       Choose the win32 build.
#       Install MySQL and put its /bin directory on your path.
#
# And be sure to use new-style password hashing:
#   http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
  adapter: mysql
  encoding: utf8
  reconnect: false
  database: test_development
  pool: 5
  username: root
  password:
  socket: /var/run/mysqld/mysqld.sock

# 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:
  adapter: mysql
  encoding: utf8
  reconnect: false
  database: test_test
  pool: 5
  username: root
  password:
  socket: /var/run/mysqld/mysqld.sock

production:
  adapter: mysql
  encoding: utf8
  reconnect: false
  database: CONFIG[:db][:database]
  pool: 5
  username: CONFIG[:db][:username]
  password: CONFIG[:db][:password]
  socket: /var/run/mysqld/mysqld.sock

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
ixtlan-generators-0.1.7 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.5 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.4 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.3 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.2 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.1 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.6.0 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-generators-0.1.0 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.5.0 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.4.1 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.4.0 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.2.0 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.1.1 lib/generators/ixtlan/setup/templates/database.yml.example
ixtlan-core-0.1.0 lib/generators/ixtlan/setup/templates/database.yml.example