RE: redmine_wk_time install problem ! ยป database.yml
1 |
---
|
---|---|
2 |
# Default setup is given for MySQL 5.7.7 or later.
|
3 |
# Examples for PostgreSQL, SQLite3 and SQL Server can be found at the end.
|
4 |
# Line indentation must be 2 spaces (no tabs).
|
5 |
production: |
6 |
adapter: mysql2 |
7 |
database: bitnami_redmineplusagile |
8 |
host: 127.0.0.1 |
9 |
username: bitnami |
10 |
password: 5d51015730 |
11 |
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
|
12 |
encoding: utf8mb4 |
13 |
port: 3306 |
14 |
development: |
15 |
adapter: mysql2 |
16 |
database: redmine_development |
17 |
host: localhost |
18 |
username: root |
19 |
password: "" |
20 |
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
|
21 |
encoding: utf8mb4 |
22 |
# Warning: The database defined as "test" will be erased and
|
23 |
# re-generated from your development database when you run "rake".
|
24 |
# Do not set this db to the same as development or production.
|
25 |
test: |
26 |
adapter: mysql2 |
27 |
database: redmine_test |
28 |
host: localhost |
29 |
username: root |
30 |
password: "" |
31 |
# Use "utf8" instead of "utfmb4" for MySQL prior to 5.7.7
|
32 |
encoding: utf8mb4 |
33 |
# PostgreSQL configuration example
|
34 |
#production:
|
35 |
# adapter: postgresql
|
36 |
# database: redmine
|
37 |
# host: localhost
|
38 |
# username: postgres
|
39 |
# password: "postgres"
|
40 |
# SQLite3 configuration example
|
41 |
#production:
|
42 |
# adapter: sqlite3
|
43 |
# database: db/redmine.sqlite3
|
44 |
# SQL Server configuration example
|
45 |
#production:
|
46 |
# adapter: sqlserver
|
47 |
# database: redmine
|
48 |
# host: localhost
|
49 |
# username: jenkins
|
50 |
# password: jenkins
|