Sha256: d036a57648bbc2906bcbf0b7f40a6d83831b63ca89520d278ffb832058af747b

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

# Default setup is given for MySQL with ruby1.9.
# Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
# Line indentation must be 2 spaces (no tabs).

production:
  adapter: mysql2
  database: redmine
  host: localhost
  username: root
  password: "testsrvr"
  encoding: utf8

development:
  adapter: mysql2
  database: redmine
  host: localhost
  username: root
  password: "testsrvr"
  encoding: utf8

# 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: mysql2
  database: redmine
  host: localhost
  username: root
  password: "testsrvr"
  encoding: utf8

# PostgreSQL configuration example
#production:
#  adapter: postgresql
#  database: redmine
#  host: localhost
#  username: postgres
#  password: "postgres"

# SQLite3 configuration example
#production:
#  adapter: sqlite3
#  database: db/redmine.sqlite3

# SQL Server configuration example
#production:
#  adapter: sqlserver
#  database: redmine
#  host: localhost
#  username: jenkins
#  password: jenkins

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redmine_extensions-0.0.13 config/database.yml.mysql
redmine_extensions-0.0.12 config/database.yml.mysql