Skip to content

Instantly share code, notes, and snippets.

@svoboda-jan
Created September 9, 2015 21:15
Show Gist options
  • Save svoboda-jan/26ea5fa4fe728b9001e6 to your computer and use it in GitHub Desktop.
Save svoboda-jan/26ea5fa4fe728b9001e6 to your computer and use it in GitHub Desktop.
Example Redmine database.yml configuration for FirebirdSQL database (https://github.com/svoboda-jan/redmine/tree/firebirdsql)
production:
adapter: fb
database: ~/Documents/redmine/db/redmine.fdb
username: SYSDBA
password: masterkey
host: localhost
encoding: UTF-8
create: true
development:
adapter: fb
database: ~/Documents/redmine/db/redmine_dev.fdb
username: SYSDBA
password: masterkey
host: localhost
encoding: UTF-8
create: true
# 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: fb
database: ~/Documents/redmine/db/redmine_test.fdb
username: SYSDBA
password: masterkey
host: localhost
encoding: UTF-8
create: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment