Mercurial > hg > soundsoftware-site
annotate config/database.yml.example @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | 261b3d9a4903 |
children |
rev | line source |
---|---|
Chris@1464 | 1 # Default setup is given for MySQL with ruby1.9. If you're running Redmine |
Chris@1464 | 2 # with MySQL and ruby1.8, replace the adapter name with `mysql`. |
Chris@1464 | 3 # Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end. |
Chris@1464 | 4 # Line indentation must be 2 spaces (no tabs). |
Chris@0 | 5 |
Chris@0 | 6 production: |
Chris@1464 | 7 adapter: mysql2 |
Chris@0 | 8 database: redmine |
Chris@0 | 9 host: localhost |
Chris@0 | 10 username: root |
Chris@1115 | 11 password: "" |
Chris@0 | 12 encoding: utf8 |
Chris@909 | 13 |
Chris@0 | 14 development: |
Chris@1464 | 15 adapter: mysql2 |
Chris@0 | 16 database: redmine_development |
Chris@0 | 17 host: localhost |
Chris@0 | 18 username: root |
Chris@1115 | 19 password: "" |
Chris@0 | 20 encoding: utf8 |
Chris@0 | 21 |
Chris@0 | 22 # Warning: The database defined as "test" will be erased and |
Chris@0 | 23 # re-generated from your development database when you run "rake". |
Chris@0 | 24 # Do not set this db to the same as development or production. |
Chris@0 | 25 test: |
Chris@1464 | 26 adapter: mysql2 |
Chris@0 | 27 database: redmine_test |
Chris@0 | 28 host: localhost |
Chris@0 | 29 username: root |
Chris@1115 | 30 password: "" |
Chris@0 | 31 encoding: utf8 |
Chris@0 | 32 |
Chris@1464 | 33 # PostgreSQL configuration example |
Chris@1464 | 34 #production: |
Chris@1464 | 35 # adapter: postgresql |
Chris@1464 | 36 # database: redmine |
Chris@1464 | 37 # host: localhost |
Chris@1464 | 38 # username: postgres |
Chris@1464 | 39 # password: "postgres" |
Chris@0 | 40 |
Chris@1464 | 41 # SQLite3 configuration example |
Chris@1464 | 42 #production: |
Chris@1464 | 43 # adapter: sqlite3 |
Chris@1464 | 44 # database: db/redmine.sqlite3 |
Chris@1464 | 45 |
Chris@1464 | 46 # SQL Server configuration example |
Chris@1464 | 47 #production: |
Chris@1464 | 48 # adapter: sqlserver |
Chris@1464 | 49 # database: redmine |
Chris@1464 | 50 # host: localhost |
Chris@1464 | 51 # username: jenkins |
Chris@1464 | 52 # password: jenkins |